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