Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
FromClause |
FromClause.add(OuterJoinQualifier outerJoinQualifier)
Adds an outer join descriptor that defines how the streams are related via outer joins.
|
FromClause |
FromClause.add(Stream stream)
Adds a stream.
|
static FromClause |
FromClause.create()
Creates an empty from-clause to which one adds streams via the add methods.
|
static FromClause |
FromClause.create(Stream... streams)
Creates a from clause that selects from a single stream.
|
static FromClause |
FromClause.create(Stream stream,
OuterJoinQualifier outerJoinQualifier,
Stream streamSecond)
Creates a from-clause that lists 2 projected streams joined via outer join.
|
FromClause |
EPStatementObjectModel.getFromClause()
Return the from-clause.
|
Modifier and Type | Method and Description |
---|---|
EPStatementObjectModel |
EPStatementObjectModel.fromClause(FromClause fromClause)
Specify a from-clause.
|
void |
EPStatementObjectModel.setFromClause(FromClause fromClause)
Specify a from-clause.
|