Package openGql.grammar
Class OrderByAndPageStatement
- java.lang.Object
-
- openGql.grammar.OrderByAndPageStatement
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<OrderByAndPageStatement>
- Direct Known Subclasses:
OrderByAndPageStatement.LimitOnly,OrderByAndPageStatement.OffsetAndOptionalLimit,OrderByAndPageStatement.OrderByAndOptionalOffsetAndLimit
public abstract class OrderByAndPageStatement extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<OrderByAndPageStatement>
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOrderByAndPageStatement.LimitOnlystatic classOrderByAndPageStatement.OffsetAndOptionalLimitstatic classOrderByAndPageStatement.OrderByAndOptionalOffsetAndLimitstatic interfaceOrderByAndPageStatement.PartialVisitor<R>Partial visitor overOrderByAndPageStatementwith a defaultOrderByAndPageStatement.PartialVisitor.otherwise(openGql.grammar.OrderByAndPageStatement)branch.static interfaceOrderByAndPageStatement.Visitor<R>Visitor overOrderByAndPageStatement.
-
Field Summary
Fields Modifier and Type Field Description static NameLIMIT_ONLYName of theopenGql.grammar.OrderByAndPageStatement.limitOnlyfield.static NameOFFSET_AND_OPTIONAL_LIMITName of theopenGql.grammar.OrderByAndPageStatement.offsetAndOptionalLimitfield.static NameORDER_BY_AND_OPTIONAL_OFFSET_AND_LIMITName of theopenGql.grammar.OrderByAndPageStatement.orderByAndOptionalOffsetAndLimitfield.static NameTYPE_Name of theopenGql.grammar.OrderByAndPageStatementtype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(OrderByAndPageStatement.Visitor<R> visitor)Dispatch tovisitor.
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of theopenGql.grammar.OrderByAndPageStatementtype.
-
ORDER_BY_AND_OPTIONAL_OFFSET_AND_LIMIT
public static final Name ORDER_BY_AND_OPTIONAL_OFFSET_AND_LIMIT
Name of theopenGql.grammar.OrderByAndPageStatement.orderByAndOptionalOffsetAndLimitfield.
-
OFFSET_AND_OPTIONAL_LIMIT
public static final Name OFFSET_AND_OPTIONAL_LIMIT
Name of theopenGql.grammar.OrderByAndPageStatement.offsetAndOptionalLimitfield.
-
LIMIT_ONLY
public static final Name LIMIT_ONLY
Name of theopenGql.grammar.OrderByAndPageStatement.limitOnlyfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(OrderByAndPageStatement.Visitor<R> visitor)
Dispatch tovisitor.
-
-