Package openGql.grammar
Class SelectStatementBody
- java.lang.Object
-
- openGql.grammar.SelectStatementBody
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SelectStatementBody>
- Direct Known Subclasses:
SelectStatementBody.GraphMatchList,SelectStatementBody.QuerySpecification
public abstract class SelectStatementBody extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<SelectStatementBody>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSelectStatementBody.GraphMatchListstatic interfaceSelectStatementBody.PartialVisitor<R>Partial visitor overSelectStatementBodywith a defaultSelectStatementBody.PartialVisitor.otherwise(openGql.grammar.SelectStatementBody)branch.static classSelectStatementBody.QuerySpecificationstatic interfaceSelectStatementBody.Visitor<R>Visitor overSelectStatementBody.
-
Field Summary
Fields Modifier and Type Field Description static NameGRAPH_MATCH_LISTName of theopenGql.grammar.SelectStatementBody.graphMatchListfield.static NameQUERY_SPECIFICATIONName of theopenGql.grammar.SelectStatementBody.querySpecificationfield.static NameTYPE_Name of theopenGql.grammar.SelectStatementBodytype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(SelectStatementBody.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.SelectStatementBodytype.
-
GRAPH_MATCH_LIST
public static final Name GRAPH_MATCH_LIST
Name of theopenGql.grammar.SelectStatementBody.graphMatchListfield.
-
QUERY_SPECIFICATION
public static final Name QUERY_SPECIFICATION
Name of theopenGql.grammar.SelectStatementBody.querySpecificationfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(SelectStatementBody.Visitor<R> visitor)
Dispatch tovisitor.
-
-