public enum ArgumentType extends java.lang.Enum<ArgumentType>
| Enum Constant and Description |
|---|
BOOL_IN
boolean in-argument (value)
|
BOOL_OUT
boolean out-argument (name of scalar)
|
COLLECTION
collection argument (name, in or out)
|
DOUBLE_IN
double in-argument (value)
|
DOUBLE_OUT
double out-argument (name of scalar)
|
EDGE_ID_IN
edge ID in-argument (value)
|
EDGE_ID_OUT
edge ID out-argument (name of scalar)
|
EDGE_PROPERTY
edge property argument (name, in or out)
|
FLOAT_IN
float in-argument (value)
|
FLOAT_OUT
float out-argument (name of scalar)
|
GENERIC_FILTER
a generic vertex or edge filter argument (name, in or out)
|
GRAPH
graph argument (name)
|
INT_IN
integer in-argument (value)
|
INT_OUT
integer out-argument (name of scalar)
|
LONG_IN
long in-argument (value)
|
LONG_OUT
long out-argument (name of scalar)
|
MAP
map argument (name, in or out)
|
NODE_ID_IN
node ID in-argument (value)
|
NODE_ID_OUT
node ID out-argument (name of scalar)
|
NODE_PROPERTY
node property argument (name, in or out)
|
STRING_IN
string in-argument (value)
|
STRING_OUT
string out-argument (name of scalar)
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isPgxId() |
static ArgumentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArgumentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArgumentType BOOL_IN
public static final ArgumentType BOOL_OUT
public static final ArgumentType COLLECTION
public static final ArgumentType DOUBLE_IN
public static final ArgumentType DOUBLE_OUT
public static final ArgumentType EDGE_ID_IN
public static final ArgumentType EDGE_ID_OUT
public static final ArgumentType EDGE_PROPERTY
public static final ArgumentType FLOAT_IN
public static final ArgumentType FLOAT_OUT
public static final ArgumentType GENERIC_FILTER
public static final ArgumentType GRAPH
public static final ArgumentType INT_IN
public static final ArgumentType INT_OUT
public static final ArgumentType LONG_IN
public static final ArgumentType LONG_OUT
public static final ArgumentType MAP
public static final ArgumentType NODE_ID_IN
public static final ArgumentType NODE_ID_OUT
public static final ArgumentType NODE_PROPERTY
public static final ArgumentType STRING_IN
public static final ArgumentType STRING_OUT
public boolean isPgxId()
public static ArgumentType 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 ArgumentType[] values()
for (ArgumentType c : ArgumentType.values()) System.out.println(c);