T - The Builder type that the clause is part of.public interface SelectClause<T extends AbstractQueryBuilder<T>>
| Modifier and Type | Method and Description |
|---|---|
T |
addVar(Expr expr,
Object var)
Adds an expression as variable to the select statement.
|
T |
addVar(Object var)
Adds a variable to the select clause.
|
T |
addVar(String expr,
Object var)
Adds an expression as variable to the select statement.
|
SelectHandler |
getSelectHandler()
Returns the select handler for this clause
|
List<Var> |
getVars() |
SelectHandler getSelectHandler()
T addVar(Object var)
var - The variable to add.T addVar(Expr expr, Object var)
expr - The expression to be addedvar - The variable to add.T addVar(String expr, Object var) throws ParseException
expr - The expression to be addedvar - The variable to add.ParseException - If the expression can not be parsed.Licensed under the Apache License, Version 2.0