Package openGql.grammar
Class PathPrimary
- java.lang.Object
-
- openGql.grammar.PathPrimary
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PathPrimary>
- Direct Known Subclasses:
PathPrimary.ElementPattern,PathPrimary.ParenthesizedExpression,PathPrimary.SimplifiedExpression
public abstract class PathPrimary extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<PathPrimary>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPathPrimary.ElementPatternstatic classPathPrimary.ParenthesizedExpressionstatic interfacePathPrimary.PartialVisitor<R>Partial visitor overPathPrimarywith a defaultPathPrimary.PartialVisitor.otherwise(openGql.grammar.PathPrimary)branch.static classPathPrimary.SimplifiedExpressionstatic interfacePathPrimary.Visitor<R>Visitor overPathPrimary.
-
Field Summary
Fields Modifier and Type Field Description static NameELEMENT_PATTERNName of theopenGql.grammar.PathPrimary.elementPatternfield.static NamePARENTHESIZED_EXPRESSIONName of theopenGql.grammar.PathPrimary.parenthesizedExpressionfield.static NameSIMPLIFIED_EXPRESSIONName of theopenGql.grammar.PathPrimary.simplifiedExpressionfield.static NameTYPE_Name of theopenGql.grammar.PathPrimarytype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(PathPrimary.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.PathPrimarytype.
-
ELEMENT_PATTERN
public static final Name ELEMENT_PATTERN
Name of theopenGql.grammar.PathPrimary.elementPatternfield.
-
PARENTHESIZED_EXPRESSION
public static final Name PARENTHESIZED_EXPRESSION
Name of theopenGql.grammar.PathPrimary.parenthesizedExpressionfield.
-
SIMPLIFIED_EXPRESSION
public static final Name SIMPLIFIED_EXPRESSION
Name of theopenGql.grammar.PathPrimary.simplifiedExpressionfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(PathPrimary.Visitor<R> visitor)
Dispatch tovisitor.
-
-