public enum IndexState extends Enum<IndexState>
Enum Constant and Description |
---|
CLOSED |
INVALID |
NOT_INITIALIZED |
OK |
REBUILDING |
Modifier and Type | Method and Description |
---|---|
static IndexState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexState NOT_INITIALIZED
public static final IndexState OK
public static final IndexState REBUILDING
public static final IndexState INVALID
public static final IndexState CLOSED
public static IndexState[] values()
for (IndexState c : IndexState.values()) System.out.println(c);
public static IndexState 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 © 2015. All rights reserved.