|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Index.IndexState> com.google.appengine.api.datastore.Index.IndexState
public static enum Index.IndexState
Indicates the state of the Index
.
Enum Constant Summary | |
---|---|
BUILDING
Indicates the given Index is being built and therefore can not
be used to service queries. |
|
DELETING
Indicates the given Index is being deleted. |
|
ERROR
Indicates the given Index encountered an error in the
BUILDING state. |
|
SERVING
Indicates the given Index is ready to service queries. |
Method Summary | |
---|---|
static Index.IndexState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Index.IndexState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, 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 Index.IndexState BUILDING
Index
is being built and therefore can not
be used to service queries.
public static final Index.IndexState SERVING
Index
is ready to service queries.
public static final Index.IndexState DELETING
Index
is being deleted.
public static final Index.IndexState ERROR
Index
encountered an error in the
BUILDING
state.
Method Detail |
---|
public static Index.IndexState[] values()
for (Index.IndexState c : Index.IndexState.values()) System.out.println(c);
public static Index.IndexState 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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |