|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ErrorState>
org.neo4j.graphdb.event.ErrorState
public enum ErrorState
An object that describes a state from which a Neo4j Graph Database cannot continue.
Enum Constant Summary | |
---|---|
STORAGE_MEDIA_FULL
The Graph Database failed since the storage media where the graph database data is stored is full and cannot be written to. |
|
TX_MANAGER_NOT_OK
Not more transactions can be started or committed during this session and the database needs to be shut down, possible for maintenance before it can be started again. |
Method Summary | |
---|---|
static ErrorState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ErrorState[] |
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 ErrorState STORAGE_MEDIA_FULL
public static final ErrorState TX_MANAGER_NOT_OK
Method Detail |
---|
public static ErrorState[] values()
for (ErrorState c : ErrorState.values()) System.out.println(c);
public static ErrorState 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
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |