public enum LabelIncludeType extends java.lang.Enum<LabelIncludeType> implements EnumConverter<LabelIncludeType>
Enum Constant and Description |
---|
STRINGS_WITH_LABEL |
STRINGS_WITHOUT_LABEL |
Modifier and Type | Method and Description |
---|---|
static LabelIncludeType |
from(java.lang.String value) |
java.lang.Object |
to(LabelIncludeType v) |
static LabelIncludeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LabelIncludeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LabelIncludeType STRINGS_WITH_LABEL
public static final LabelIncludeType STRINGS_WITHOUT_LABEL
public static LabelIncludeType[] values()
for (LabelIncludeType c : LabelIncludeType.values()) System.out.println(c);
public static LabelIncludeType 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 LabelIncludeType from(java.lang.String value)
public java.lang.Object to(LabelIncludeType v)
to
in interface EnumConverter<LabelIncludeType>