![]() | SelectClause Methods |
The SelectClause type exposes the following members.
Name | Description | |
---|---|---|
![]() | Add(String) | Adds property names to be selected. |
![]() | Add(Expression) | Adds an expression to the select clause. |
![]() | Add(Expression, String) | Adds an expression to the select clause and an "as"-asName for the column. |
![]() | AddElements | |
![]() | AddStreamWildcard(String) | Adds to the select-clause a stream wildcard selector (e.g. select streamName.* from MyStream as streamName) |
![]() | AddStreamWildcard(String, String) | Adds to the select-clause a stream wildcard selector with column name (e.g. select streamName.* as colName from MyStream as streamName) |
![]() | AddWildcard | Adds to the select-clause a wildcard selector (e.g. select * from MyStream as streamName) |
![]() | AddWithAsProvidedName | Adds a single property name and an "as"-asName for the column. |
![]() ![]() | Create | Creates an empty select-clause to be added to via add methods. |
![]() ![]() | Create(String) | Creates a select-clause consisting of a list of property names. |
![]() ![]() | Create(StreamSelector) | Creates an empty select-clause. |
![]() ![]() | Create(StreamSelector, String) | Creates a select-clause consisting of a list of property names. |
![]() ![]() | CreateStreamWildcard | Creates a select-clause with a single stream wildcard selector (e.g. select streamName.* from MyStream as streamName) |
![]() ![]() | CreateWildcard | Creates a wildcard select-clause, additional expressions can still be added. |
![]() ![]() | CreateWildcard(StreamSelector) | Creates a wildcard select-clause, additional expressions can still be added. |
![]() | Distinct | Sets distinct to true. |
![]() | Distinct(Boolean) | Sets distinct |
![]() | GetStreamSelector | Returns the stream selector. |
![]() | SetStreamSelector | Sets the stream selector. |
![]() | ToEPL |
Renders the clause in textual representation.
|