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