Package | Description |
---|---|
com.espertech.esper.epl.spec |
Contains EPL statement specification classes define the constructs that make up an EPL statement,
such as the list of items in the select clause, the insert-into stream name and property names etc.
|
Modifier and Type | Class and Description |
---|---|
class |
SelectClauseElementWildcard
Represents a wildcard as a select clause element.
|
class |
SelectClauseExprRawSpec
Represents a single item in a SELECT-clause, potentially unnamed
as no "as" tag may have been supplied in the syntax.
|
class |
SelectClauseStreamRawSpec
For use in select clauses for specifying a selected stream: select a.* from MyEvent as a, MyOther as b
|
Modifier and Type | Method and Description |
---|---|
List<SelectClauseElementRaw> |
OnTriggerMergeActionInsert.getSelectClause() |
List<SelectClauseElementRaw> |
SelectClauseSpecRaw.getSelectExprList()
Returns the list of select expressions.
|
Modifier and Type | Method and Description |
---|---|
void |
SelectClauseSpecRaw.add(SelectClauseElementRaw element)
Adds an select expression within the select clause.
|
Modifier and Type | Method and Description |
---|---|
void |
SelectClauseSpecRaw.addAll(Collection<SelectClauseElementRaw> elements)
Adds select expressions within the select clause.
|
Constructor and Description |
---|
OnTriggerMergeActionInsert(ExprNode optionalWhereClause,
String optionalStreamName,
List<String> columns,
List<SelectClauseElementRaw> selectClause) |