|
Neo4j Enterprise | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<InternalIndexState>
org.neo4j.kernel.api.index.InternalIndexState
public enum InternalIndexState
Defines the state of a given index.
| Enum Constant Summary | |
|---|---|
FAILED
Denotes that the index, for one reason or another, is broken. |
|
ONLINE
Given after the database has populated the index, and notified the index provider that the index is in fact populated. |
|
POPULATING
Denotes that an index is in the process of being created. |
|
| Method Summary | |
|---|---|
static InternalIndexState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static InternalIndexState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final InternalIndexState POPULATING
public static final InternalIndexState ONLINE
public static final InternalIndexState FAILED
| Method Detail |
|---|
public static InternalIndexState[] values()
for (InternalIndexState c : InternalIndexState.values()) System.out.println(c);
public static InternalIndexState valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
Neo4j Enterprise | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||