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

Packages that use SelectClauseSpec
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 SelectClauseSpec in net.esper.eql.core
 

Methods in net.esper.eql.core with parameters of type SelectClauseSpec
static ResultSetProcessor ResultSetProcessorFactory.getProcessor(SelectClauseSpec selectClauseSpec, InsertIntoDesc insertIntoDesc, List<ExprNode> groupByNodes, ExprNode optionalHavingNode, OutputLimitSpec outputLimitSpec, List<Pair<ExprNode,Boolean>> 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.
 

Uses of SelectClauseSpec in net.esper.eql.spec
 

Methods in net.esper.eql.spec that return SelectClauseSpec
 SelectClauseSpec StatementSpecRaw.getSelectClauseSpec()
          Returns SELECT-clause list of expressions.
 SelectClauseSpec StatementSpecCompiled.getSelectClauseSpec()
          Returns SELECT-clause list of expressions.
 

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