- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.expression.MySQLGroupConcat
-
- All Implemented Interfaces:
Serializable
,Expression
,Model
,net.sf.jsqlparser.parser.ASTNodeAccess
public class MySQLGroupConcat extends net.sf.jsqlparser.parser.ASTNodeAccessImpl implements Expression
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MySQLGroupConcat()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T,S>
Taccept(ExpressionVisitor<T> expressionVisitor, S context)
MySQLGroupConcat
addOrderByElements(Collection<? extends OrderByElement> orderByElements)
MySQLGroupConcat
addOrderByElements(OrderByElement... orderByElements)
ExpressionList<?>
getExpressionList()
List<OrderByElement>
getOrderByElements()
String
getSeparator()
boolean
isDistinct()
void
setDistinct(boolean distinct)
void
setExpressionList(ExpressionList expressionList)
void
setOrderByElements(List<OrderByElement> orderByElements)
void
setSeparator(String separator)
String
toString()
MySQLGroupConcat
withDistinct(boolean distinct)
MySQLGroupConcat
withExpressionList(ExpressionList expressionList)
MySQLGroupConcat
withOrderByElements(List<OrderByElement> orderByElements)
MySQLGroupConcat
withSeparator(String separator)
-
Methods inherited from class net.sf.jsqlparser.parser.ASTNodeAccessImpl
appendTo, getASTNode, getParent, getParent, setASTNode
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.sf.jsqlparser.expression.Expression
accept
-
-
-
-
Method Detail
-
getExpressionList
public ExpressionList<?> getExpressionList()
-
setExpressionList
public void setExpressionList(ExpressionList expressionList)
-
isDistinct
public boolean isDistinct()
-
setDistinct
public void setDistinct(boolean distinct)
-
getOrderByElements
public List<OrderByElement> getOrderByElements()
-
setOrderByElements
public void setOrderByElements(List<OrderByElement> orderByElements)
-
getSeparator
public String getSeparator()
-
setSeparator
public void setSeparator(String separator)
-
accept
public <T,S> T accept(ExpressionVisitor<T> expressionVisitor, S context)
- Specified by:
accept
in interfaceExpression
-
toString
public String toString()
- Overrides:
toString
in classnet.sf.jsqlparser.parser.ASTNodeAccessImpl
-
withExpressionList
public MySQLGroupConcat withExpressionList(ExpressionList expressionList)
-
withDistinct
public MySQLGroupConcat withDistinct(boolean distinct)
-
withOrderByElements
public MySQLGroupConcat withOrderByElements(List<OrderByElement> orderByElements)
-
withSeparator
public MySQLGroupConcat withSeparator(String separator)
-
addOrderByElements
public MySQLGroupConcat addOrderByElements(OrderByElement... orderByElements)
-
addOrderByElements
public MySQLGroupConcat addOrderByElements(Collection<? extends OrderByElement> orderByElements)
-
-