public enum CypherExceptions extends Enum<CypherExceptions>
Enum Constant and Description |
---|
DELETE_CONNECTED_NODE |
INVALID_RANGE |
Modifier and Type | Method and Description |
---|---|
String |
getMessage() |
static String |
messageByName(Object name) |
static CypherExceptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CypherExceptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CypherExceptions DELETE_CONNECTED_NODE
public static final CypherExceptions INVALID_RANGE
public static CypherExceptions[] values()
for (CypherExceptions c : CypherExceptions.values()) System.out.println(c);
public static CypherExceptions 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 nullpublic String getMessage()