Class BasicSelector
- java.lang.Object
-
- io.siddhi.query.api.execution.query.selection.Selector
-
- io.siddhi.query.api.execution.query.selection.BasicSelector
-
- All Implemented Interfaces:
SiddhiElement,Serializable
public class BasicSelector extends Selector
Basic Selector API- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BasicSelector()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BasicSelectoraddGroupByList(List<Variable> list)BasicSelectoraddSelectionList(List<OutputAttribute> projectionList)BasicSelectorgroupBy(Variable variable)BasicSelectorselect(Variable variable)BasicSelectorselect(String rename, Expression expression)-
Methods inherited from class io.siddhi.query.api.execution.query.selection.Selector
addOrderByList, basicSelector, equals, getGroupByList, getHavingExpression, getLimit, getOffset, getOrderByList, getQueryContextEndIndex, getQueryContextStartIndex, getSelectionList, hashCode, having, limit, offset, orderBy, orderBy, selector, setQueryContextEndIndex, setQueryContextStartIndex, toString
-
-
-
-
Method Detail
-
select
public BasicSelector select(String rename, Expression expression)
-
select
public BasicSelector select(Variable variable)
-
groupBy
public BasicSelector groupBy(Variable variable)
-
addGroupByList
public BasicSelector addGroupByList(List<Variable> list)
- Overrides:
addGroupByListin classSelector
-
addSelectionList
public BasicSelector addSelectionList(List<OutputAttribute> projectionList)
- Overrides:
addSelectionListin classSelector
-
-