public enum EnumUpdatability extends Enum<EnumUpdatability>
Java class for enumUpdatability.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="enumUpdatability"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="readonly"/> <enumeration value="readwrite"/> <enumeration value="whencheckedout"/> <enumeration value="oncreate"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ONCREATE |
READONLY |
READWRITE |
WHENCHECKEDOUT |
Modifier and Type | Method and Description |
---|---|
static EnumUpdatability |
fromValue(String v) |
String |
value() |
static EnumUpdatability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumUpdatability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumUpdatability READONLY
public static final EnumUpdatability READWRITE
public static final EnumUpdatability WHENCHECKEDOUT
public static final EnumUpdatability ONCREATE
public static EnumUpdatability[] values()
for (EnumUpdatability c : EnumUpdatability.values()) System.out.println(c);
public static EnumUpdatability valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic String value()
public static EnumUpdatability fromValue(String v)
Copyright © 2009-2014 The Apache Software Foundation. All Rights Reserved.