public static enum OracleElement.FLAG extends java.lang.Enum<OracleElement.FLAG>
Enum Constant and Description |
---|
TO_BE_ADDED |
TO_BE_ADDED_UPDATE_INDICES |
TO_BE_REMOVED |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static OracleElement.FLAG |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OracleElement.FLAG[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final OracleElement.FLAG TO_BE_ADDED
public static final OracleElement.FLAG TO_BE_ADDED_UPDATE_INDICES
public static final OracleElement.FLAG TO_BE_REMOVED
public static final OracleElement.FLAG UNKNOWN
public static OracleElement.FLAG 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 static OracleElement.FLAG[] values()
for (OracleElement.FLAG c : OracleElement.FLAG.values()) System.out.println(c);