Package openGql.grammar
Class QueryConjunction
- java.lang.Object
-
- openGql.grammar.QueryConjunction
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<QueryConjunction>
- Direct Known Subclasses:
QueryConjunction.Otherwise,QueryConjunction.SetOperator
public abstract class QueryConjunction extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<QueryConjunction>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classQueryConjunction.Otherwisestatic interfaceQueryConjunction.PartialVisitor<R>Partial visitor overQueryConjunctionwith a defaultQueryConjunction.PartialVisitor.otherwise(openGql.grammar.QueryConjunction)branch.static classQueryConjunction.SetOperatorstatic interfaceQueryConjunction.Visitor<R>Visitor overQueryConjunction.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(QueryConjunction.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.QueryConjunctiontype.
-
SET_OPERATOR
public static final Name SET_OPERATOR
Name of theopenGql.grammar.QueryConjunction.setOperatorfield.
-
OTHERWISE
public static final Name OTHERWISE
Name of theopenGql.grammar.QueryConjunction.otherwisefield.
-
-
Method Detail
-
accept
public abstract <R> R accept(QueryConjunction.Visitor<R> visitor)
Dispatch tovisitor.
-
-