Enum Class Index.Status
- All Implemented Interfaces:
Serializable
,Comparable<Index.Status>
,Constable
- Enclosing interface:
- Index<T extends Comparable<T>>
Status of an index.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIn a multi-stripe configuration, at least one (but not all) stripes do not have the index defined.The state of a no-longer-extant index.The state of an created, but not yet fully populated index.The state of a live and usable index.The state of a defined but not yet created index. -
Method Summary
Modifier and TypeMethodDescriptionstatic Index.Status
Returns the enum constant of this class with the specified name.static Index.Status[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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. -
POTENTIAL
The state of a defined but not yet created index. -
INITALIZING
The state of an created, but not yet fully populated index. -
LIVE
The state of a live and usable index.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-