- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.expression.MySQLGroupConcat
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
,Model
,ASTNodeAccess
public class MySQLGroupConcat extends ASTNodeAccessImpl implements Expression
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
distinct
private ExpressionList
expressionList
private java.util.List<OrderByElement>
orderByElements
private java.lang.String
separator
-
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(java.util.Collection<? extends OrderByElement> orderByElements)
MySQLGroupConcat
addOrderByElements(OrderByElement... orderByElements)
ExpressionList<?>
getExpressionList()
java.util.List<OrderByElement>
getOrderByElements()
java.lang.String
getSeparator()
boolean
isDistinct()
void
setDistinct(boolean distinct)
void
setExpressionList(ExpressionList expressionList)
void
setOrderByElements(java.util.List<OrderByElement> orderByElements)
void
setSeparator(java.lang.String separator)
java.lang.String
toString()
MySQLGroupConcat
withDistinct(boolean distinct)
MySQLGroupConcat
withExpressionList(ExpressionList expressionList)
MySQLGroupConcat
withOrderByElements(java.util.List<OrderByElement> orderByElements)
MySQLGroupConcat
withSeparator(java.lang.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.parser.ASTNodeAccess
getASTNode, setASTNode
-
Methods inherited from interface net.sf.jsqlparser.expression.Expression
accept
-
-
-
-
Field Detail
-
expressionList
private ExpressionList expressionList
-
distinct
private boolean distinct
-
orderByElements
private java.util.List<OrderByElement> orderByElements
-
separator
private java.lang.String separator
-
-
Method Detail
-
getExpressionList
public ExpressionList<?> getExpressionList()
-
setExpressionList
public void setExpressionList(ExpressionList expressionList)
-
isDistinct
public boolean isDistinct()
-
setDistinct
public void setDistinct(boolean distinct)
-
getOrderByElements
public java.util.List<OrderByElement> getOrderByElements()
-
setOrderByElements
public void setOrderByElements(java.util.List<OrderByElement> orderByElements)
-
getSeparator
public java.lang.String getSeparator()
-
setSeparator
public void setSeparator(java.lang.String separator)
-
accept
public <T,S> T accept(ExpressionVisitor<T> expressionVisitor, S context)
- Specified by:
accept
in interfaceExpression
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
withExpressionList
public MySQLGroupConcat withExpressionList(ExpressionList expressionList)
-
withDistinct
public MySQLGroupConcat withDistinct(boolean distinct)
-
withOrderByElements
public MySQLGroupConcat withOrderByElements(java.util.List<OrderByElement> orderByElements)
-
withSeparator
public MySQLGroupConcat withSeparator(java.lang.String separator)
-
addOrderByElements
public MySQLGroupConcat addOrderByElements(OrderByElement... orderByElements)
-
addOrderByElements
public MySQLGroupConcat addOrderByElements(java.util.Collection<? extends OrderByElement> orderByElements)
-
-