Uses of Class
com.espertech.esper.common.client.soda.SelectClause
Package
Description
This package defines the Esper statement object model.
-
Uses of SelectClause in com.espertech.esper.common.client.soda
Modifier and TypeMethodDescriptionSelectClause.add
(Expression expression) Adds an expression to the select clause.SelectClause.add
(Expression expression, String asName) Adds an expression to the select clause and an "as"-asName for the column.Adds property names to be selected.SelectClause.addStreamWildcard
(String streamName) Adds to the select-clause a stream wildcard selector (e.g.SelectClause.addStreamWildcard
(String streamName, String columnName) Adds to the select-clause a stream wildcard selector with column name (e.g.SelectClause.addWildcard()
Adds to the select-clause a wildcard selector (e.g.SelectClause.addWithAsProvidedName
(String propertyName, String asName) Adds a single property name and an "as"-asName for the column.static SelectClause
SelectClause.create()
Creates an empty select-clause to be added to via add methods.static SelectClause
SelectClause.create
(StreamSelector streamSelector) Creates an empty select-clause.static SelectClause
SelectClause.create
(StreamSelector streamSelector, String... propertyNames) Creates a select-clause consisting of a list of property names.static SelectClause
Creates a select-clause consisting of a list of property names.static SelectClause
SelectClause.createStreamWildcard
(String streamName) Creates a select-clause with a single stream wildcard selector (e.g.static SelectClause
SelectClause.createWildcard()
Creates a wildcard select-clause, additional expressions can still be added.static SelectClause
SelectClause.createWildcard
(StreamSelector streamSelector) Creates a wildcard select-clause, additional expressions can still be added.SelectClause.distinct()
Sets distinct to true.SelectClause.distinct
(boolean distinct) Sets distinctContainedEventSelect.getSelectClause()
Returns the select clause.EPStatementObjectModel.getSelectClause()
Return the select-clause.OnInsertSplitStreamItem.getSelectClause()
Returns the select-clause.SelectClause.streamSelector
(StreamSelector streamSelector) Sets the stream selector.Modifier and TypeMethodDescriptionstatic OnInsertSplitStreamItem
OnInsertSplitStreamItem.create
(InsertIntoClause insertInto, SelectClause selectClause, Expression whereClause) Factory method for split-stream items.static OnInsertSplitStreamItem
OnInsertSplitStreamItem.create
(InsertIntoClause insertInto, SelectClause selectClause, List<ContainedEventSelect> propertySelects, String propertySelectsStreamName, Expression whereClause) Factory method for split-stream items.EPStatementObjectModel.selectClause
(SelectClause selectClause) Specify a select-clause.void
ContainedEventSelect.setSelectClause
(SelectClause selectClause) Sets the select clause.void
EPStatementObjectModel.setSelectClause
(SelectClause selectClause) Specify a select-clause.void
OnInsertSplitStreamItem.setSelectClause
(SelectClause selectClause) Sets the select-clause.ModifierConstructorDescriptionOnInsertSplitStreamItem
(InsertIntoClause insertInto, SelectClause selectClause, Expression whereClause) Ctor.OnInsertSplitStreamItem
(InsertIntoClause insertInto, SelectClause selectClause, List<ContainedEventSelect> propertySelects, String propertySelectsStreamName, Expression whereClause) Ctor.