public static enum CustomOptions.DataItem extends java.lang.Enum<CustomOptions.DataItem>
Enum Constant and Description |
---|
BLANK_YEARS |
DORMANT_SEASON |
EARLY_EARLYWOOD |
LATE_EARLYWOOD |
LATEWOOD |
MIDDLE_EARLYWOOD |
UNDETERMINED |
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
text |
Modifier and Type | Method and Description |
---|---|
static CustomOptions.DataItem |
fromString(java.lang.String s) |
java.lang.String |
toString() |
static CustomOptions.DataItem |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomOptions.DataItem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomOptions.DataItem DORMANT_SEASON
public static final CustomOptions.DataItem EARLY_EARLYWOOD
public static final CustomOptions.DataItem MIDDLE_EARLYWOOD
public static final CustomOptions.DataItem LATE_EARLYWOOD
public static final CustomOptions.DataItem LATEWOOD
public static final CustomOptions.DataItem UNDETERMINED
public static final CustomOptions.DataItem BLANK_YEARS
public static CustomOptions.DataItem[] values()
for (CustomOptions.DataItem c : CustomOptions.DataItem.values()) System.out.println(c);
public static CustomOptions.DataItem 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 java.lang.String toString()
toString
in class java.lang.Enum<CustomOptions.DataItem>
public static CustomOptions.DataItem fromString(java.lang.String s)