Package com.exasol.adapter.sql
Class SqlFunctionAggregateGroupConcat
- java.lang.Object
-
- com.exasol.adapter.sql.SqlNode
-
- com.exasol.adapter.sql.SqlFunctionAggregateGroupConcat
-
public class SqlFunctionAggregateGroupConcat extends SqlNode
-
-
Constructor Summary
Constructors Constructor Description SqlFunctionAggregateGroupConcat(AggregateFunction function, List<SqlNode> arguments, SqlOrderBy orderBy, boolean distinct, String separator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> Raccept(SqlNodeVisitor<R> visitor)SeeSqlNodeVisitorList<SqlNode>getArguments()AggregateFunctiongetFunction()StringgetFunctionName()SqlOrderBygetOrderBy()StringgetSeparator()SqlNodeTypegetType()booleanhasDistinct()booleanhasOrderBy()
-
-
-
Constructor Detail
-
SqlFunctionAggregateGroupConcat
public SqlFunctionAggregateGroupConcat(AggregateFunction function, List<SqlNode> arguments, SqlOrderBy orderBy, boolean distinct, String separator)
-
-
Method Detail
-
getFunction
public AggregateFunction getFunction()
-
hasOrderBy
public boolean hasOrderBy()
-
getOrderBy
public SqlOrderBy getOrderBy()
-
getFunctionName
public String getFunctionName()
-
getSeparator
public String getSeparator()
-
hasDistinct
public boolean hasDistinct()
-
getType
public SqlNodeType getType()
-
accept
public <R> R accept(SqlNodeVisitor<R> visitor) throws AdapterException
Description copied from class:SqlNodeSeeSqlNodeVisitor- Specified by:
acceptin classSqlNode- Type Parameters:
R- generic SqlNodeVisitor type- Parameters:
visitor- The visitor object on which the appropriate visit(sqlNode) method is called- Returns:
- visited object
- Throws:
AdapterException- can be thrown
-
-