public enum StaticActions extends java.lang.Enum<StaticActions>
Java class for staticActions.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="staticActions">
<restriction base="{}allActions">
<enumeration value="update"/>
<enumeration value="export"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static StaticActions |
fromValue(AllActions v) |
AllActions |
value() |
static StaticActions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StaticActions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StaticActions UPDATE
public static final StaticActions EXPORT
public static StaticActions[] values()
for (StaticActions c : StaticActions.values()) System.out.println(c);
public static StaticActions 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 AllActions value()
public static StaticActions fromValue(AllActions v)