public enum OptionalFeature extends Enum<OptionalFeature>
Enum Constant and Description |
---|
STORE_BY_REFERENCE
Implementation supports store by reference
|
Modifier and Type | Method and Description |
---|---|
static OptionalFeature |
valueOf(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 STORE_BY_REFERENCE
public static OptionalFeature[] values()
for (OptionalFeature c : OptionalFeature.values()) System.out.println(c);
public static OptionalFeature 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 nullCopyright © 2014. All Rights Reserved.