Enum GremlinQueryPreProcessor.Operator
- java.lang.Object
-
- java.lang.Enum<GremlinQueryPreProcessor.Operator>
-
- com.amazonaws.athena.connectors.neptune.propertygraph.GremlinQueryPreProcessor.Operator
-
- All Implemented Interfaces:
Serializable
,Comparable<GremlinQueryPreProcessor.Operator>
- Enclosing class:
- GremlinQueryPreProcessor
public static enum GremlinQueryPreProcessor.Operator extends Enum<GremlinQueryPreProcessor.Operator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUALTO
GREATERTHAN
LESSTHAN
NOTEQUALTO
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GremlinQueryPreProcessor.Operator
valueOf(String name)
Returns the enum constant of this type with the specified name.static GremlinQueryPreProcessor.Operator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LESSTHAN
public static final GremlinQueryPreProcessor.Operator LESSTHAN
-
GREATERTHAN
public static final GremlinQueryPreProcessor.Operator GREATERTHAN
-
EQUALTO
public static final GremlinQueryPreProcessor.Operator EQUALTO
-
NOTEQUALTO
public static final GremlinQueryPreProcessor.Operator NOTEQUALTO
-
-
Method Detail
-
values
public static GremlinQueryPreProcessor.Operator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GremlinQueryPreProcessor.Operator c : GremlinQueryPreProcessor.Operator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GremlinQueryPreProcessor.Operator valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-