Package openGql.grammar
Class SimplifiedPathPatternExpression
- java.lang.Object
-
- openGql.grammar.SimplifiedPathPatternExpression
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SimplifiedPathPatternExpression>
- Direct Known Subclasses:
SimplifiedPathPatternExpression.AnyDirection,SimplifiedPathPatternExpression.Left,SimplifiedPathPatternExpression.LeftOrRight,SimplifiedPathPatternExpression.LeftOrUndirected,SimplifiedPathPatternExpression.Right,SimplifiedPathPatternExpression.Undirected,SimplifiedPathPatternExpression.UndirectedOrRight
public abstract class SimplifiedPathPatternExpression extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<SimplifiedPathPatternExpression>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSimplifiedPathPatternExpression.AnyDirectionstatic classSimplifiedPathPatternExpression.Leftstatic classSimplifiedPathPatternExpression.LeftOrRightstatic classSimplifiedPathPatternExpression.LeftOrUndirectedstatic interfaceSimplifiedPathPatternExpression.PartialVisitor<R>Partial visitor overSimplifiedPathPatternExpressionwith a defaultSimplifiedPathPatternExpression.PartialVisitor.otherwise(openGql.grammar.SimplifiedPathPatternExpression)branch.static classSimplifiedPathPatternExpression.Rightstatic classSimplifiedPathPatternExpression.Undirectedstatic classSimplifiedPathPatternExpression.UndirectedOrRightstatic interfaceSimplifiedPathPatternExpression.Visitor<R>Visitor overSimplifiedPathPatternExpression.
-
Field Summary
Fields Modifier and Type Field Description static NameANY_DIRECTIONName of theopenGql.grammar.SimplifiedPathPatternExpression.anyDirectionfield.static NameLEFTName of theopenGql.grammar.SimplifiedPathPatternExpression.leftfield.static NameLEFT_OR_RIGHTName of theopenGql.grammar.SimplifiedPathPatternExpression.leftOrRightfield.static NameLEFT_OR_UNDIRECTEDName of theopenGql.grammar.SimplifiedPathPatternExpression.leftOrUndirectedfield.static NameRIGHTName of theopenGql.grammar.SimplifiedPathPatternExpression.rightfield.static NameTYPE_Name of theopenGql.grammar.SimplifiedPathPatternExpressiontype.static NameUNDIRECTEDName of theopenGql.grammar.SimplifiedPathPatternExpression.undirectedfield.static NameUNDIRECTED_OR_RIGHTName of theopenGql.grammar.SimplifiedPathPatternExpression.undirectedOrRightfield.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(SimplifiedPathPatternExpression.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.SimplifiedPathPatternExpressiontype.
-
LEFT
public static final Name LEFT
Name of theopenGql.grammar.SimplifiedPathPatternExpression.leftfield.
-
UNDIRECTED
public static final Name UNDIRECTED
Name of theopenGql.grammar.SimplifiedPathPatternExpression.undirectedfield.
-
RIGHT
public static final Name RIGHT
Name of theopenGql.grammar.SimplifiedPathPatternExpression.rightfield.
-
LEFT_OR_UNDIRECTED
public static final Name LEFT_OR_UNDIRECTED
Name of theopenGql.grammar.SimplifiedPathPatternExpression.leftOrUndirectedfield.
-
UNDIRECTED_OR_RIGHT
public static final Name UNDIRECTED_OR_RIGHT
Name of theopenGql.grammar.SimplifiedPathPatternExpression.undirectedOrRightfield.
-
LEFT_OR_RIGHT
public static final Name LEFT_OR_RIGHT
Name of theopenGql.grammar.SimplifiedPathPatternExpression.leftOrRightfield.
-
ANY_DIRECTION
public static final Name ANY_DIRECTION
Name of theopenGql.grammar.SimplifiedPathPatternExpression.anyDirectionfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(SimplifiedPathPatternExpression.Visitor<R> visitor)
Dispatch tovisitor.
-
-