Package openGql.grammar
Class CastOperand
- java.lang.Object
-
- openGql.grammar.CastOperand
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CastOperand>
- Direct Known Subclasses:
CastOperand.NullLiteral,CastOperand.ValueExpression
public abstract class CastOperand extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<CastOperand>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCastOperand.NullLiteralstatic interfaceCastOperand.PartialVisitor<R>Partial visitor overCastOperandwith a defaultCastOperand.PartialVisitor.otherwise(openGql.grammar.CastOperand)branch.static classCastOperand.ValueExpressionstatic interfaceCastOperand.Visitor<R>Visitor overCastOperand.
-
Field Summary
Fields Modifier and Type Field Description static NameNULL_LITERALName of theopenGql.grammar.CastOperand.nullLiteralfield.static NameTYPE_Name of theopenGql.grammar.CastOperandtype.static NameVALUE_EXPRESSIONName of theopenGql.grammar.CastOperand.valueExpressionfield.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(CastOperand.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.CastOperandtype.
-
VALUE_EXPRESSION
public static final Name VALUE_EXPRESSION
Name of theopenGql.grammar.CastOperand.valueExpressionfield.
-
NULL_LITERAL
public static final Name NULL_LITERAL
Name of theopenGql.grammar.CastOperand.nullLiteralfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(CastOperand.Visitor<R> visitor)
Dispatch tovisitor.
-
-