Uses of Class
com.espertech.esper.common.client.soda.OuterJoinQualifier
Packages that use OuterJoinQualifier
Package
Description
This package defines the Esper statement object model.
-
Uses of OuterJoinQualifier in com.espertech.esper.common.client.soda
Methods in com.espertech.esper.common.client.soda that return OuterJoinQualifierModifier and TypeMethodDescriptionAdd additional properties to the on-clause, which are logical-and to existing propertiesstatic OuterJoinQualifier
OuterJoinQualifier.create
(String propertyLeft, com.espertech.esper.common.internal.type.OuterJoinType type, String propertyRight) Creates qualifier.Methods in com.espertech.esper.common.client.soda that return types with arguments of type OuterJoinQualifierModifier and TypeMethodDescriptionFromClause.getOuterJoinQualifiers()
Returns the outer join descriptors, if this is an outer join, or an empty list if none of the streams are outer joined.Methods in com.espertech.esper.common.client.soda with parameters of type OuterJoinQualifierModifier and TypeMethodDescriptionFromClause.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.Method parameters in com.espertech.esper.common.client.soda with type arguments of type OuterJoinQualifierModifier and TypeMethodDescriptionvoid
FromClause.setOuterJoinQualifiers
(List<OuterJoinQualifier> outerJoinQualifiers) Set outer joins.Constructors in com.espertech.esper.common.client.soda with parameters of type OuterJoinQualifierModifierConstructorDescriptionFromClause
(Stream streamOne, OuterJoinQualifier outerJoinQualifier, Stream streamTwo) Ctor for an outer join between two streams.