Module net.sf.jsqlparser
Class ParenthesedExpressionList<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>
-
- 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
- Direct Known Subclasses:
Parenthesis
,RowConstructor
public class ParenthesedExpressionList<T extends Expression> extends ExpressionList<T>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParenthesedExpressionList()
ParenthesedExpressionList(java.util.Collection<T> expressions)
ParenthesedExpressionList(ExpressionList<T> expressions)
ParenthesedExpressionList(T... expressions)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ParenthesedExpressionList<?>
from(ExpressionList<?> expressions)
java.lang.String
toString()
-
Methods inherited from class net.sf.jsqlparser.expression.operators.relational.ExpressionList
accept, 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.expression.Expression
accept
-
-
-
-
Constructor Detail
-
ParenthesedExpressionList
public ParenthesedExpressionList()
-
ParenthesedExpressionList
public ParenthesedExpressionList(ExpressionList<T> expressions)
-
ParenthesedExpressionList
@SafeVarargs public ParenthesedExpressionList(T... expressions)
-
ParenthesedExpressionList
public ParenthesedExpressionList(java.util.Collection<T> expressions)
-
-
Method Detail
-
from
public static ParenthesedExpressionList<?> from(ExpressionList<?> expressions)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classExpressionList<T extends Expression>
-
-