Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Class and Description |
---|---|
class |
SelectClauseExpression
Part of a select-clause to describe individual select-clause expressions.
|
class |
SelectClauseStreamWildcard
For use in a select clause, this element in a select clause defines that for a given stream we want to
select the underlying type.
|
class |
SelectClauseWildcard
Represents a wildcard in the select-clause.
|
Modifier and Type | Method and Description |
---|---|
List<SelectClauseElement> |
SelectClause.getSelectList()
Returns the list of expressions in the select clause.
|
List<SelectClauseElement> |
OnMergeMatchedInsertAction.getSelectList()
Returns the select expressions.
|
Modifier and Type | Method and Description |
---|---|
void |
SelectClause.addElements(List<SelectClauseElement> selectClauseElements)
Add a select expression element.
|
void |
SelectClause.setSelectList(List<SelectClauseElement> selectList)
Sets the list of expressions in the select clause.
|
void |
OnMergeMatchedInsertAction.setSelectList(List<SelectClauseElement> selectList)
Sets the select expressions.
|
Constructor and Description |
---|
OnMergeMatchedInsertAction(List<String> columnNames,
List<SelectClauseElement> selectList,
Expression whereClause,
String optionalStreamName)
Ctor.
|
SelectClause(StreamSelector streamSelector,
List<SelectClauseElement> selectList)
Ctor.
|