Package openGql.grammar
Class ElementTypeSpecification
- java.lang.Object
-
- openGql.grammar.ElementTypeSpecification
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ElementTypeSpecification>
- Direct Known Subclasses:
ElementTypeSpecification.EdgeType,ElementTypeSpecification.NodeType
public abstract class ElementTypeSpecification extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<ElementTypeSpecification>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classElementTypeSpecification.EdgeTypestatic classElementTypeSpecification.NodeTypestatic interfaceElementTypeSpecification.PartialVisitor<R>Partial visitor overElementTypeSpecificationwith a defaultElementTypeSpecification.PartialVisitor.otherwise(openGql.grammar.ElementTypeSpecification)branch.static interfaceElementTypeSpecification.Visitor<R>Visitor overElementTypeSpecification.
-
Field Summary
Fields Modifier and Type Field Description static NameEDGE_TYPEName of theopenGql.grammar.ElementTypeSpecification.edgeTypefield.static NameNODE_TYPEName of theopenGql.grammar.ElementTypeSpecification.nodeTypefield.static NameTYPE_Name of theopenGql.grammar.ElementTypeSpecificationtype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(ElementTypeSpecification.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.ElementTypeSpecificationtype.
-
NODE_TYPE
public static final Name NODE_TYPE
Name of theopenGql.grammar.ElementTypeSpecification.nodeTypefield.
-
EDGE_TYPE
public static final Name EDGE_TYPE
Name of theopenGql.grammar.ElementTypeSpecification.edgeTypefield.
-
-
Method Detail
-
accept
public abstract <R> R accept(ElementTypeSpecification.Visitor<R> visitor)
Dispatch tovisitor.
-
-