public enum ErrorState extends Enum<ErrorState>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final ErrorState STORAGE_MEDIA_FULL
public static final ErrorState TX_MANAGER_NOT_OK
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 nameNullPointerException
- if the argument is nullCopyright © 2002–2016 The Neo4j Graph Database Project. All rights reserved.