Package openGql.grammar
Class GraphReference
- java.lang.Object
-
- openGql.grammar.GraphReference
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<GraphReference>
- Direct Known Subclasses:
GraphReference.DelimitedGraphName,GraphReference.HomeGraph,GraphReference.ParameterSpecification,GraphReference.ParentAndGraphName
public abstract class GraphReference extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<GraphReference>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGraphReference.DelimitedGraphNamestatic classGraphReference.HomeGraphstatic classGraphReference.ParameterSpecificationstatic classGraphReference.ParentAndGraphNamestatic interfaceGraphReference.PartialVisitor<R>Partial visitor overGraphReferencewith a defaultGraphReference.PartialVisitor.otherwise(openGql.grammar.GraphReference)branch.static interfaceGraphReference.Visitor<R>Visitor overGraphReference.
-
Field Summary
Fields Modifier and Type Field Description static NameDELIMITED_GRAPH_NAMEName of theopenGql.grammar.GraphReference.delimitedGraphNamefield.static NameHOME_GRAPHName of theopenGql.grammar.GraphReference.homeGraphfield.static NamePARAMETER_SPECIFICATIONName of theopenGql.grammar.GraphReference.parameterSpecificationfield.static NamePARENT_AND_GRAPH_NAMEName of theopenGql.grammar.GraphReference.parentAndGraphNamefield.static NameTYPE_Name of theopenGql.grammar.GraphReferencetype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(GraphReference.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.GraphReferencetype.
-
PARENT_AND_GRAPH_NAME
public static final Name PARENT_AND_GRAPH_NAME
Name of theopenGql.grammar.GraphReference.parentAndGraphNamefield.
-
DELIMITED_GRAPH_NAME
public static final Name DELIMITED_GRAPH_NAME
Name of theopenGql.grammar.GraphReference.delimitedGraphNamefield.
-
HOME_GRAPH
public static final Name HOME_GRAPH
Name of theopenGql.grammar.GraphReference.homeGraphfield.
-
PARAMETER_SPECIFICATION
public static final Name PARAMETER_SPECIFICATION
Name of theopenGql.grammar.GraphReference.parameterSpecificationfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(GraphReference.Visitor<R> visitor)
Dispatch tovisitor.
-
-