Package | Description |
---|---|
com.espertech.esper.common.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
OuterJoinQualifier |
OuterJoinQualifier.add(java.lang.String propertyLeft,
java.lang.String propertyRight)
Add additional properties to the on-clause, which are logical-and to existing properties
|
static OuterJoinQualifier |
OuterJoinQualifier.create(java.lang.String propertyLeft,
com.espertech.esper.common.internal.type.OuterJoinType type,
java.lang.String propertyRight)
Creates qualifier.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<OuterJoinQualifier> |
FromClause.getOuterJoinQualifiers()
Returns the outer join descriptors, if this is an outer join, or an empty list if
none of the streams are outer joined.
|
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.
|
static FromClause |
FromClause.create(Stream stream,
OuterJoinQualifier outerJoinQualifier,
Stream streamSecond)
Creates a from-clause that lists 2 projected streams joined via outer join.
|
Modifier and Type | Method and Description |
---|---|
void |
FromClause.setOuterJoinQualifiers(java.util.List<OuterJoinQualifier> outerJoinQualifiers)
Set outer joins.
|
Constructor and Description |
---|
FromClause(Stream streamOne,
OuterJoinQualifier outerJoinQualifier,
Stream streamTwo)
Ctor for an outer join between two streams.
|