Package openGql.grammar
Class InsertEdgePattern
- java.lang.Object
-
- openGql.grammar.InsertEdgePattern
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<InsertEdgePattern>
- Direct Known Subclasses:
InsertEdgePattern.PointingLeft,InsertEdgePattern.PointingRight,InsertEdgePattern.Undirected
public abstract class InsertEdgePattern extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<InsertEdgePattern>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceInsertEdgePattern.PartialVisitor<R>Partial visitor overInsertEdgePatternwith a defaultInsertEdgePattern.PartialVisitor.otherwise(openGql.grammar.InsertEdgePattern)branch.static classInsertEdgePattern.PointingLeftstatic classInsertEdgePattern.PointingRightstatic classInsertEdgePattern.Undirectedstatic interfaceInsertEdgePattern.Visitor<R>Visitor overInsertEdgePattern.
-
Field Summary
Fields Modifier and Type Field Description static NamePOINTING_LEFTName of theopenGql.grammar.InsertEdgePattern.pointingLeftfield.static NamePOINTING_RIGHTName of theopenGql.grammar.InsertEdgePattern.pointingRightfield.static NameTYPE_Name of theopenGql.grammar.InsertEdgePatterntype.static NameUNDIRECTEDName of theopenGql.grammar.InsertEdgePattern.undirectedfield.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(InsertEdgePattern.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.InsertEdgePatterntype.
-
POINTING_LEFT
public static final Name POINTING_LEFT
Name of theopenGql.grammar.InsertEdgePattern.pointingLeftfield.
-
POINTING_RIGHT
public static final Name POINTING_RIGHT
Name of theopenGql.grammar.InsertEdgePattern.pointingRightfield.
-
UNDIRECTED
public static final Name UNDIRECTED
Name of theopenGql.grammar.InsertEdgePattern.undirectedfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(InsertEdgePattern.Visitor<R> visitor)
Dispatch tovisitor.
-
-