public static enum Status.Classification extends Enum<Status.Classification>
| Enum Constant and Description |
|---|
ClientError
The Client sent a bad request - changing the request might yield a successful outcome.
|
ClientNotification
There are notifications about the request sent by the client.
|
DatabaseError
The database failed to service the request.
|
TransientError
The database cannot service the request right now, retrying later might yield a successful outcome.
|
| Modifier and Type | Method and Description |
|---|---|
String |
description() |
boolean |
rollbackTransaction() |
static Status.Classification |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Status.Classification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Status.Classification ClientError
public static final Status.Classification ClientNotification
public static final Status.Classification TransientError
public static final Status.Classification DatabaseError
public static Status.Classification[] values()
for (Status.Classification c : Status.Classification.values()) System.out.println(c);
public static Status.Classification 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 boolean rollbackTransaction()
public String description()
Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.