Uses of Enum Class
com.espertech.esper.common.client.soda.StreamSelector
Packages that use StreamSelector
Package
Description
Configuration classes for the compiler section, which is only relevant to the compiler
This package defines the Esper statement object model.
-
Uses of StreamSelector in com.espertech.esper.common.client.configuration.compiler
Methods in com.espertech.esper.common.client.configuration.compiler that return StreamSelectorModifier and TypeMethodDescriptionConfigurationCompilerStreamSelection.getDefaultStreamSelector()
Returns the default stream selector.Methods in com.espertech.esper.common.client.configuration.compiler with parameters of type StreamSelectorModifier and TypeMethodDescriptionvoid
ConfigurationCompilerStreamSelection.setDefaultStreamSelector
(StreamSelector defaultStreamSelector) Sets the default stream selector. -
Uses of StreamSelector in com.espertech.esper.common.client.soda
Methods in com.espertech.esper.common.client.soda that return StreamSelectorModifier and TypeMethodDescriptionInsertIntoClause.getStreamSelector()
Returns the stream selector for the insert into.SelectClause.getStreamSelector()
Returns the stream selector.static StreamSelector
Returns the enum constant of this class with the specified name.static StreamSelector[]
StreamSelector.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.espertech.esper.common.client.soda with parameters of type StreamSelectorModifier and TypeMethodDescriptionstatic InsertIntoClause
InsertIntoClause.create
(String streamName, String[] columns, StreamSelector streamSelector) Creates the insert-into clause.static InsertIntoClause
InsertIntoClause.create
(String streamName, String[] columns, StreamSelector streamSelector, Expression precedence) Creates the insert-into clause.static SelectClause
SelectClause.create
(StreamSelector streamSelector) Creates an empty select-clause.static SelectClause
SelectClause.create
(StreamSelector streamSelector, String... propertyNames) Creates a select-clause consisting of a list of property names.static SelectClause
SelectClause.createWildcard
(StreamSelector streamSelector) Creates a wildcard select-clause, additional expressions can still be added.void
InsertIntoClause.setStreamSelector
(StreamSelector streamSelector) Sets the stream selector for the insert into.void
SelectClause.setStreamSelector
(StreamSelector streamSelector) Sets the stream selector.SelectClause.streamSelector
(StreamSelector streamSelector) Sets the stream selector.Constructors in com.espertech.esper.common.client.soda with parameters of type StreamSelectorModifierConstructorDescriptionInsertIntoClause
(String streamName, List<String> columnNames, StreamSelector streamSelector) Ctor.InsertIntoClause
(String streamName, List<String> columnNames, StreamSelector streamSelector, Expression eventPrecedence) Ctor.protected
SelectClause
(StreamSelector streamSelector, List<SelectClauseElement> selectList) Ctor.