Package openGql.grammar
Class AggregateFunction
- java.lang.Object
-
- openGql.grammar.AggregateFunction
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AggregateFunction>
- Direct Known Subclasses:
AggregateFunction.BinarySetFunction,AggregateFunction.CountAll,AggregateFunction.GeneralSetFunction
public abstract class AggregateFunction extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<AggregateFunction>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAggregateFunction.BinarySetFunctionstatic classAggregateFunction.CountAllstatic classAggregateFunction.GeneralSetFunctionstatic interfaceAggregateFunction.PartialVisitor<R>Partial visitor overAggregateFunctionwith a defaultAggregateFunction.PartialVisitor.otherwise(openGql.grammar.AggregateFunction)branch.static interfaceAggregateFunction.Visitor<R>Visitor overAggregateFunction.
-
Field Summary
Fields Modifier and Type Field Description static NameBINARY_SET_FUNCTIONName of theopenGql.grammar.AggregateFunction.binarySetFunctionfield.static NameCOUNT_ALLName of theopenGql.grammar.AggregateFunction.countAllfield.static NameGENERAL_SET_FUNCTIONName of theopenGql.grammar.AggregateFunction.generalSetFunctionfield.static NameTYPE_Name of theopenGql.grammar.AggregateFunctiontype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(AggregateFunction.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.AggregateFunctiontype.
-
COUNT_ALL
public static final Name COUNT_ALL
Name of theopenGql.grammar.AggregateFunction.countAllfield.
-
GENERAL_SET_FUNCTION
public static final Name GENERAL_SET_FUNCTION
Name of theopenGql.grammar.AggregateFunction.generalSetFunctionfield.
-
BINARY_SET_FUNCTION
public static final Name BINARY_SET_FUNCTION
Name of theopenGql.grammar.AggregateFunction.binarySetFunctionfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(AggregateFunction.Visitor<R> visitor)
Dispatch tovisitor.
-
-