Package openGql.grammar
Class SelectQuerySpecification
- java.lang.Object
-
- openGql.grammar.SelectQuerySpecification
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SelectQuerySpecification>
- Direct Known Subclasses:
SelectQuerySpecification.GraphAndNested,SelectQuerySpecification.Nested
public abstract class SelectQuerySpecification extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<SelectQuerySpecification>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSelectQuerySpecification.GraphAndNestedstatic classSelectQuerySpecification.Nestedstatic interfaceSelectQuerySpecification.PartialVisitor<R>Partial visitor overSelectQuerySpecificationwith a defaultSelectQuerySpecification.PartialVisitor.otherwise(openGql.grammar.SelectQuerySpecification)branch.static interfaceSelectQuerySpecification.Visitor<R>Visitor overSelectQuerySpecification.
-
Field Summary
Fields Modifier and Type Field Description static NameGRAPH_AND_NESTEDName of theopenGql.grammar.SelectQuerySpecification.graphAndNestedfield.static NameNESTEDName of theopenGql.grammar.SelectQuerySpecification.nestedfield.static NameTYPE_Name of theopenGql.grammar.SelectQuerySpecificationtype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(SelectQuerySpecification.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.SelectQuerySpecificationtype.
-
NESTED
public static final Name NESTED
Name of theopenGql.grammar.SelectQuerySpecification.nestedfield.
-
GRAPH_AND_NESTED
public static final Name GRAPH_AND_NESTED
Name of theopenGql.grammar.SelectQuerySpecification.graphAndNestedfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(SelectQuerySpecification.Visitor<R> visitor)
Dispatch tovisitor.
-
-