Package openGql.grammar
Class CaseOperand
- java.lang.Object
-
- openGql.grammar.CaseOperand
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CaseOperand>
- Direct Known Subclasses:
CaseOperand.ElementReference,CaseOperand.ValueExpression
public abstract class CaseOperand extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<CaseOperand>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCaseOperand.ElementReferencestatic interfaceCaseOperand.PartialVisitor<R>Partial visitor overCaseOperandwith a defaultCaseOperand.PartialVisitor.otherwise(openGql.grammar.CaseOperand)branch.static classCaseOperand.ValueExpressionstatic interfaceCaseOperand.Visitor<R>Visitor overCaseOperand.
-
Field Summary
Fields Modifier and Type Field Description static NameELEMENT_REFERENCEName of theopenGql.grammar.CaseOperand.elementReferencefield.static NameTYPE_Name of theopenGql.grammar.CaseOperandtype.static NameVALUE_EXPRESSIONName of theopenGql.grammar.CaseOperand.valueExpressionfield.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(CaseOperand.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.CaseOperandtype.
-
VALUE_EXPRESSION
public static final Name VALUE_EXPRESSION
Name of theopenGql.grammar.CaseOperand.valueExpressionfield.
-
ELEMENT_REFERENCE
public static final Name ELEMENT_REFERENCE
Name of theopenGql.grammar.CaseOperand.elementReferencefield.
-
-
Method Detail
-
accept
public abstract <R> R accept(CaseOperand.Visitor<R> visitor)
Dispatch tovisitor.
-
-