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:
Serializable,Cloneable,Iterable<T>,Collection<T>,List<T>,RandomAccess,Expression,Model,net.sf.jsqlparser.parser.ASTNodeAccess
public class RowConstructor<T extends Expression> extends ParenthesedExpressionList<T> implements Expression
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.AbstractList
modCount
-
-
Constructor Summary
Constructors Constructor Description RowConstructor()RowConstructor(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)StringgetName()voidsetName(String name)StringtoString()RowConstructor<?>withName(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, equals, forEach, get, hashCode, 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.util.AbstractCollection
containsAll
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, stream, toArray
-
Methods inherited from interface net.sf.jsqlparser.expression.Expression
accept
-
Methods inherited from interface java.util.List
containsAll
-
-
-
-
Constructor Detail
-
RowConstructor
public RowConstructor()
-
RowConstructor
public RowConstructor(String name, ExpressionList<T> expressionList)
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
toString
public String toString()
- Overrides:
toStringin classParenthesedExpressionList<T extends Expression>
-
withName
public RowConstructor<?> withName(String name)
-
accept
public <K,S> K accept(ExpressionVisitor<K> expressionVisitor, S context)
- Specified by:
acceptin interfaceExpression- Overrides:
acceptin classExpressionList<T extends Expression>
-
-