Package | Description |
---|---|
com.espertech.esper.common.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 |
---|---|
java.util.List<SelectClauseElement> |
SelectClause.getSelectList()
Returns the list of expressions in the select clause.
|
java.util.List<SelectClauseElement> |
OnMergeMatchedInsertAction.getSelectList()
Returns the select expressions.
|
Modifier and Type | Method and Description |
---|---|
void |
SelectClause.addElements(java.util.List<SelectClauseElement> selectClauseElements)
Add a select expression element.
|
void |
SelectClause.setSelectList(java.util.List<SelectClauseElement> selectList)
Sets the list of expressions in the select clause.
|
void |
OnMergeMatchedInsertAction.setSelectList(java.util.List<SelectClauseElement> selectList)
Sets the select expressions.
|
Constructor and Description |
---|
OnMergeMatchedInsertAction(java.util.List<java.lang.String> columnNames,
java.util.List<SelectClauseElement> selectList,
Expression whereClause,
java.lang.String optionalStreamName)
Ctor.
|
SelectClause(StreamSelector streamSelector,
java.util.List<SelectClauseElement> selectList)
Ctor.
|