public enum InternalIndexState extends Enum<InternalIndexState>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final InternalIndexState POPULATING
public static final InternalIndexState ONLINE
public static final InternalIndexState FAILED
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 nameNullPointerException
- if the argument is nullCopyright © 2002-2013 The Neo4j Graph Database Project. All Rights Reserved.