public enum AllActions extends java.lang.Enum<AllActions>
Java class for allActions.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="allActions">
<restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
<enumeration value="create"/>
<enumeration value="delete"/>
<enumeration value="update"/>
<enumeration value="locate"/>
<enumeration value="export"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CREATE |
DELETE |
EXPORT |
LOCATE |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static AllActions |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static AllActions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AllActions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AllActions CREATE
public static final AllActions DELETE
public static final AllActions UPDATE
public static final AllActions LOCATE
public static final AllActions EXPORT
public static AllActions[] values()
for (AllActions c : AllActions.values()) System.out.println(c);
public static AllActions valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String value()
public static AllActions fromValue(java.lang.String v)