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