Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
SelectClause |
SelectClause.add(Expression expression)
Adds an expression to the select clause.
|
SelectClause |
SelectClause.add(Expression expression,
String asName)
Adds an expression to the select clause and an "as"-asName for the column.
|
SelectClause |
SelectClause.add(String... propertyNames)
Adds property names to be selected.
|
SelectClause |
SelectClause.addStreamWildcard(String streamName)
Adds to the select-clause a stream wildcard selector (e.g.
|
SelectClause |
SelectClause.addStreamWildcard(String streamName,
String columnName)
Adds to the select-clause a stream wildcard selector with column name (e.g.
|
SelectClause |
SelectClause.addWildcard()
Adds to the select-clause a wildcard selector (e.g.
|
SelectClause |
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 |
SelectClause.create(String... propertyNames)
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 |
SelectClause.distinct()
Sets distinct to true.
|
SelectClause |
SelectClause.distinct(boolean distinct)
Sets distinct
|
SelectClause |
OnInsertSplitStreamItem.getSelectClause()
Returns the select-clause.
|
SelectClause |
EPStatementObjectModel.getSelectClause()
Return the select-clause.
|
SelectClause |
ContainedEventSelect.getSelectClause()
Returns the select clause.
|
SelectClause |
SelectClause.streamSelector(StreamSelector streamSelector)
Sets the stream selector.
|
Modifier and Type | Method and Description |
---|---|
static 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 |
EPStatementObjectModel.selectClause(SelectClause selectClause)
Specify a select-clause.
|
void |
OnInsertSplitStreamItem.setSelectClause(SelectClause selectClause)
Sets the select-clause.
|
void |
EPStatementObjectModel.setSelectClause(SelectClause selectClause)
Specify a select-clause.
|
void |
ContainedEventSelect.setSelectClause(SelectClause selectClause)
Sets the select clause.
|
Constructor and Description |
---|
OnInsertSplitStreamItem(InsertIntoClause insertInto,
SelectClause selectClause,
Expression whereClause)
Ctor.
|
OnInsertSplitStreamItem(InsertIntoClause insertInto,
SelectClause selectClause,
List<ContainedEventSelect> propertySelects,
String propertySelectsStreamName,
Expression whereClause)
Ctor.
|