public static enum QueryExecutionType.QueryType extends Enum<QueryExecutionType.QueryType>
QueryExecutionType executes.| Enum Constant and Description |
|---|
READ_ONLY
A read-only query, that does not change any data, but only produces a result.
|
READ_WRITE
A read/write query, that creates or updates data, and also produces a result.
|
SCHEMA_WRITE
A schema changing query, that updates the schema but neither changes any data nor yields any rows in the
result.
|
WRITE
A write-only query, that creates or updates data, but does not yield any rows in the result.
|
| Modifier and Type | Method and Description |
|---|---|
static QueryExecutionType.QueryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryExecutionType.QueryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryExecutionType.QueryType READ_ONLY
public static final QueryExecutionType.QueryType READ_WRITE
public static final QueryExecutionType.QueryType WRITE
public static final QueryExecutionType.QueryType SCHEMA_WRITE
public static QueryExecutionType.QueryType[] values()
for (QueryExecutionType.QueryType c : QueryExecutionType.QueryType.values()) System.out.println(c);
public static QueryExecutionType.QueryType 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.