Uses of Class
net.esper.client.soda.SelectClause

Packages that use SelectClause
net.esper.client.soda This package defines the Esper statement object model. 
 

Uses of SelectClause in net.esper.client.soda
 

Methods in net.esper.client.soda that return SelectClause
 SelectClause SelectClause.add(Expression expression)
          Adds an expression to the select clause.
 SelectClause SelectClause.add(Expression expression, String asName)
          Adds an expression to the select clause and an "as"-asName for the column.
 SelectClause SelectClause.add(String... propertyNames)
          Adds property names to be selected.
 SelectClause SelectClause.addWithAlias(String propertyName, String asName)
          Adds a single property name and an "as"-asName for the column.
static SelectClause SelectClause.create()
          Creates an empty select-clause to be added to via add methods.
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.create(String... propertyNames)
          Creates a select-clause consisting of a list of property names.
static SelectClause SelectClause.createWildcard()
          Creates a wildcard select-clause, additional expressions can still be added.
static SelectClause SelectClause.createWildcard(StreamSelector streamSelector)
          Creates a wildcard select-clause, additional expressions can still be added.
 SelectClause EPStatementObjectModel.getSelectClause()
          Return the select-clause.
 

Methods in net.esper.client.soda with parameters of type SelectClause
 EPStatementObjectModel EPStatementObjectModel.setSelectClause(SelectClause selectClause)
          Specify a select-clause.