Package openGql.grammar
Class CaseExpression
- java.lang.Object
-
- openGql.grammar.CaseExpression
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CaseExpression>
- Direct Known Subclasses:
CaseExpression.Abbreviation,CaseExpression.Specification
public abstract class CaseExpression extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<CaseExpression>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCaseExpression.Abbreviationstatic interfaceCaseExpression.PartialVisitor<R>Partial visitor overCaseExpressionwith a defaultCaseExpression.PartialVisitor.otherwise(openGql.grammar.CaseExpression)branch.static classCaseExpression.Specificationstatic interfaceCaseExpression.Visitor<R>Visitor overCaseExpression.
-
Field Summary
Fields Modifier and Type Field Description static NameABBREVIATIONName of theopenGql.grammar.CaseExpression.abbreviationfield.static NameSPECIFICATIONName of theopenGql.grammar.CaseExpression.specificationfield.static NameTYPE_Name of theopenGql.grammar.CaseExpressiontype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(CaseExpression.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.CaseExpressiontype.
-
ABBREVIATION
public static final Name ABBREVIATION
Name of theopenGql.grammar.CaseExpression.abbreviationfield.
-
SPECIFICATION
public static final Name SPECIFICATION
Name of theopenGql.grammar.CaseExpression.specificationfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(CaseExpression.Visitor<R> visitor)
Dispatch tovisitor.
-
-