public enum ClauseType extends Enum<ClauseType>
| Enum Constant and Description |
|---|
CASE |
CREATE |
CREATE_INDEX |
CREATE_UNIQUE |
CYPHER_NATIVE |
DELETE |
DROP_INDEX |
ELSE |
END |
FOREACH |
MATCH |
MERGE |
ON_CREATE_DELETE |
ON_CREATE_REMOVE |
ON_CREATE_SET |
ON_MATCH_DELETE |
ON_MATCH_REMOVE |
ON_MATCH_SET |
OPTIONAL_MATCH |
REMOVE |
RETURN |
SEPARATE |
SET |
START |
UNION |
UNION_ALL |
USING_INDEX |
USING_SCAN |
WHEN |
WHERE |
WITH |
| Modifier and Type | Method and Description |
|---|---|
String |
getDisplay() |
static ClauseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClauseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClauseType START
public static final ClauseType MATCH
public static final ClauseType OPTIONAL_MATCH
public static final ClauseType CREATE
public static final ClauseType CREATE_UNIQUE
public static final ClauseType MERGE
public static final ClauseType USING_INDEX
public static final ClauseType USING_SCAN
public static final ClauseType RETURN
public static final ClauseType WITH
public static final ClauseType WHERE
public static final ClauseType UNION
public static final ClauseType UNION_ALL
public static final ClauseType CYPHER_NATIVE
public static final ClauseType SET
public static final ClauseType DELETE
public static final ClauseType REMOVE
public static final ClauseType FOREACH
public static final ClauseType CREATE_INDEX
public static final ClauseType DROP_INDEX
public static final ClauseType SEPARATE
public static final ClauseType CASE
public static final ClauseType WHEN
public static final ClauseType ELSE
public static final ClauseType END
public static final ClauseType ON_CREATE_SET
public static final ClauseType ON_MATCH_SET
public static final ClauseType ON_CREATE_DELETE
public static final ClauseType ON_MATCH_DELETE
public static final ClauseType ON_CREATE_REMOVE
public static final ClauseType ON_MATCH_REMOVE
public static ClauseType[] values()
for (ClauseType c : ClauseType.values()) System.out.println(c);
public static ClauseType 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 getDisplay()
Copyright © 2016. All rights reserved.