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