Uses of Class
net.esper.eql.spec.OrderByItem

Packages that use OrderByItem
net.esper.eql.core Contains EQL statement specification classes define the constructs that make up an EQL statement, such as the list of items in the select clause, the insert-into stream name and property names etc. 
net.esper.eql.spec Contains EQL statement specification classes define the constructs that make up an EQL statement, such as the list of items in the select clause, the insert-into stream name and property names etc. 
 

Uses of OrderByItem in net.esper.eql.core
 

Method parameters in net.esper.eql.core with type arguments of type OrderByItem
static OrderByProcessor OrderByProcessorFactory.getProcessor(List<SelectExprElementCompiledSpec> selectionList, List<ExprNode> groupByNodes, List<OrderByItem> orderByList, AggregationService aggregationService, EventAdapterService eventAdapterService)
          Returns processor for order-by clauses.
static ResultSetProcessor ResultSetProcessorFactory.getProcessor(SelectClauseSpec selectClauseSpec, InsertIntoDesc insertIntoDesc, List<ExprNode> groupByNodes, ExprNode optionalHavingNode, OutputLimitSpec outputLimitSpec, List<OrderByItem> orderByList, StreamTypeService typeService, EventAdapterService eventAdapterService, MethodResolutionService methodResolutionService, ViewResourceDelegate viewResourceDelegate)
          Returns the result set process for the given select expression, group-by clause and having clause given a set of types describing each stream in the from-clause.
 

Constructor parameters in net.esper.eql.core with type arguments of type OrderByItem
OrderByProcessorSimple(List<OrderByItem> orderByList, List<ExprNode> groupByNodes, boolean needsGroupByKeys, AggregationService aggregationService)
          Ctor.
 

Uses of OrderByItem in net.esper.eql.spec
 

Methods in net.esper.eql.spec that return types with arguments of type OrderByItem
 List<OrderByItem> StatementSpecRaw.getOrderByList()
          Returns the list of order-by expression as specified in the ORDER BY clause.
 List<OrderByItem> StatementSpecCompiled.getOrderByList()
          Returns the list of order-by expression as specified in the ORDER BY clause.
 

Constructor parameters in net.esper.eql.spec with type arguments of type OrderByItem
StatementSpecCompiled(InsertIntoDesc insertIntoDesc, SelectClauseStreamSelectorEnum selectClauseStreamSelectorEnum, SelectClauseSpec selectClauseSpec, List<StreamSpecCompiled> streamSpecs, List<OuterJoinDesc> outerJoinDescList, ExprNode filterExprRootNode, List<ExprNode> groupByExpressions, ExprNode havingExprRootNode, OutputLimitSpec outputLimitSpec, List<OrderByItem> orderByList, List<ExprSubselectNode> subSelectExpressions)
          Ctor.