- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.expression.ArrayConstructor
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
,Model
,ASTNodeAccess
public class ArrayConstructor extends ASTNodeAccessImpl implements Expression
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
arrayKeyword
private ExpressionList<?>
expressions
-
Constructor Summary
Constructors Constructor Description ArrayConstructor(Expression... expressions)
ArrayConstructor(ExpressionList<?> expressions, boolean arrayKeyword)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T,S>
Taccept(ExpressionVisitor<T> expressionVisitor, S context)
ExpressionList<?>
getExpressions()
boolean
isArrayKeyword()
void
setArrayKeyword(boolean arrayKeyword)
void
setExpressions(ExpressionList<?> expressions)
java.lang.String
toString()
-
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
-
expressions
private ExpressionList<?> expressions
-
arrayKeyword
private boolean arrayKeyword
-
-
Constructor Detail
-
ArrayConstructor
public ArrayConstructor(ExpressionList<?> expressions, boolean arrayKeyword)
-
ArrayConstructor
public ArrayConstructor(Expression... expressions)
-
-
Method Detail
-
getExpressions
public ExpressionList<?> getExpressions()
-
setExpressions
public void setExpressions(ExpressionList<?> expressions)
-
isArrayKeyword
public boolean isArrayKeyword()
-
setArrayKeyword
public void setArrayKeyword(boolean arrayKeyword)
-
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
-
-