public static enum Index.Status extends java.lang.Enum<Index.Status>
Enum Constant and Description |
---|
BROKEN
In a multi-stripe configuration, at least one (but not all) stripes do not have the index defined.
|
DEAD
The state of a no-longer-extant index.
|
INITALIZING
The state of an created, but not yet fully populated index.
|
LIVE
The state of a live and usable index.
|
POTENTIAL
The state of a defined but not yet created index.
|
Modifier and Type | Method and Description |
---|---|
static Index.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Index.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Index.Status BROKEN
public static final Index.Status DEAD
public static final Index.Status POTENTIAL
public static final Index.Status INITALIZING
public static final Index.Status LIVE
public static Index.Status[] values()
for (Index.Status c : Index.Status.values()) System.out.println(c);
public static Index.Status 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