public enum OperationType extends java.lang.Enum<OperationType>
| Enum Constant and Description |
|---|
CartesianProduct |
CommonNeighborMatch |
ConstantVertexMatch |
Delete |
EdgeMatch |
GroupBy |
Having |
Insert |
LimitOffset |
NeighborMatch |
OrderBy |
OrderByLimitOffset |
Projection |
Reachability |
RootVertexMatch |
Subquery |
SubqueryRootVertexMatch |
Update |
| Modifier and Type | Method and Description |
|---|---|
static OperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationType CartesianProduct
public static final OperationType CommonNeighborMatch
public static final OperationType ConstantVertexMatch
public static final OperationType Delete
public static final OperationType EdgeMatch
public static final OperationType GroupBy
public static final OperationType Having
public static final OperationType Insert
public static final OperationType LimitOffset
public static final OperationType NeighborMatch
public static final OperationType OrderBy
public static final OperationType OrderByLimitOffset
public static final OperationType Projection
public static final OperationType Reachability
public static final OperationType RootVertexMatch
public static final OperationType Subquery
public static final OperationType SubqueryRootVertexMatch
public static final OperationType Update
public static OperationType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static OperationType[] values()
for (OperationType c : OperationType.values()) System.out.println(c);