Package openGql.grammar
Class PathPatternExpression
- java.lang.Object
-
- openGql.grammar.PathPatternExpression
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PathPatternExpression>
- Direct Known Subclasses:
PathPatternExpression.MultisetAlternation,PathPatternExpression.PatternUnion,PathPatternExpression.Term
public abstract class PathPatternExpression extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<PathPatternExpression>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPathPatternExpression.MultisetAlternationstatic interfacePathPatternExpression.PartialVisitor<R>Partial visitor overPathPatternExpressionwith a defaultPathPatternExpression.PartialVisitor.otherwise(openGql.grammar.PathPatternExpression)branch.static classPathPatternExpression.PatternUnionstatic classPathPatternExpression.Termstatic interfacePathPatternExpression.Visitor<R>Visitor overPathPatternExpression.
-
Field Summary
Fields Modifier and Type Field Description static NameMULTISET_ALTERNATIONName of theopenGql.grammar.PathPatternExpression.multisetAlternationfield.static NamePATTERN_UNIONName of theopenGql.grammar.PathPatternExpression.patternUnionfield.static NameTERMName of theopenGql.grammar.PathPatternExpression.termfield.static NameTYPE_Name of theopenGql.grammar.PathPatternExpressiontype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(PathPatternExpression.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.PathPatternExpressiontype.
-
TERM
public static final Name TERM
Name of theopenGql.grammar.PathPatternExpression.termfield.
-
MULTISET_ALTERNATION
public static final Name MULTISET_ALTERNATION
Name of theopenGql.grammar.PathPatternExpression.multisetAlternationfield.
-
PATTERN_UNION
public static final Name PATTERN_UNION
Name of theopenGql.grammar.PathPatternExpression.patternUnionfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(PathPatternExpression.Visitor<R> visitor)
Dispatch tovisitor.
-
-