Package hydra.tinkerpop.gremlin
Class IntegerArgument
- java.lang.Object
-
- hydra.tinkerpop.gremlin.IntegerArgument
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IntegerArgument>
- Direct Known Subclasses:
IntegerArgument.Value,IntegerArgument.Variable
public abstract class IntegerArgument extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<IntegerArgument>
A Gremlin integer argument: a literal value or a bound variable- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceIntegerArgument.PartialVisitor<R>Partial visitor overIntegerArgumentwith a defaultIntegerArgument.PartialVisitor.otherwise(hydra.tinkerpop.gremlin.IntegerArgument)branch.static classIntegerArgument.Valuestatic classIntegerArgument.Variablestatic interfaceIntegerArgument.Visitor<R>Visitor overIntegerArgument.
-
Field Summary
Fields Modifier and Type Field Description static NameTYPE_Name of thehydra.tinkerpop.gremlin.IntegerArgumenttype.static NameVALUEName of thehydra.tinkerpop.gremlin.IntegerArgument.valuefield.static NameVARIABLEName of thehydra.tinkerpop.gremlin.IntegerArgument.variablefield.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(IntegerArgument.Visitor<R> visitor)Dispatch tovisitor.abstract inthydraOrdinal()
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of thehydra.tinkerpop.gremlin.IntegerArgumenttype.
-
VALUE
public static final Name VALUE
Name of thehydra.tinkerpop.gremlin.IntegerArgument.valuefield.
-
VARIABLE
public static final Name VARIABLE
Name of thehydra.tinkerpop.gremlin.IntegerArgument.variablefield.
-
-
Method Detail
-
accept
public abstract <R> R accept(IntegerArgument.Visitor<R> visitor)
Dispatch tovisitor.
-
hydraOrdinal
public abstract int hydraOrdinal()
-
-