Module net.sf.jsqlparser
Package net.sf.jsqlparser.expression
Class RowConstructor<T extends Expression>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<E>
-
- java.util.ArrayList<T>
-
- net.sf.jsqlparser.expression.operators.relational.ExpressionList<T>
-
- net.sf.jsqlparser.expression.operators.relational.ParenthesedExpressionList<T>
-
- net.sf.jsqlparser.expression.RowConstructor<T>
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,java.lang.Iterable<T>
,java.util.Collection<T>
,java.util.List<T>
,java.util.RandomAccess
,Expression
,Model
,ASTNodeAccess
public class RowConstructor<T extends Expression> extends ParenthesedExpressionList<T> implements Expression
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
name
-
Constructor Summary
Constructors Constructor Description RowConstructor()
RowConstructor(java.lang.String name, ExpressionList<T> expressionList)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <K,S>
Kaccept(ExpressionVisitor<K> expressionVisitor, S context)
java.lang.String
getName()
void
setName(java.lang.String name)
java.lang.String
toString()
RowConstructor<?>
withName(java.lang.String name)
-
Methods inherited from class net.sf.jsqlparser.expression.operators.relational.ParenthesedExpressionList
from
-
Methods inherited from class net.sf.jsqlparser.expression.operators.relational.ExpressionList
addExpression, addExpressions, addExpressions, appendTo, getASTNode, getExpressions, isUsingBrackets, setASTNode, setExpressions, withExpressions, withExpressions
-
Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, forEach, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
-
Methods inherited from class java.lang.Object
finalize, getClass, 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
-
-
-
-
Constructor Detail
-
RowConstructor
public RowConstructor()
-
RowConstructor
public RowConstructor(java.lang.String name, ExpressionList<T> expressionList)
-
-
Method Detail
-
getName
public java.lang.String getName()
-
setName
public void setName(java.lang.String name)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classParenthesedExpressionList<T extends Expression>
-
withName
public RowConstructor<?> withName(java.lang.String name)
-
accept
public <K,S> K accept(ExpressionVisitor<K> expressionVisitor, S context)
- Specified by:
accept
in interfaceExpression
- Overrides:
accept
in classExpressionList<T extends Expression>
-
-