Class Values
- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.statement.select.Select
-
- net.sf.jsqlparser.statement.select.Values
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
,Model
,ASTNodeAccess
,Statement
public class Values extends Select
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private ExpressionList<Expression>
expressions
-
Fields inherited from class net.sf.jsqlparser.statement.select.Select
fetch, forClause, isolation, limit, limitBy, offset, oracleSiblings, orderByElements, withItemsList
-
-
Constructor Summary
Constructors Constructor Description Values()
Values(ExpressionList<Expression> expressions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(SelectVisitor selectVisitor)
Values
addExpressions(java.util.Collection<? extends Expression> expressions)
Values
addExpressions(Expression... expressions)
java.lang.StringBuilder
appendSelectBodyTo(java.lang.StringBuilder builder)
ExpressionList<?>
getExpressions()
void
setExpressions(ExpressionList<Expression> expressions)
Values
withExpressions(ExpressionList<Expression> expressions)
-
Methods inherited from class net.sf.jsqlparser.statement.select.Select
accept, accept, addOrderByElements, addOrderByElements, addWithItemsList, addWithItemsList, appendStringListTo, appendTo, as, getFetch, getForClause, getFormattedList, getFormattedList, getIsolation, getLimit, getLimitBy, getOffset, getOrderByElements, getPlainSelect, getSelectBody, getSetOperationList, getStringList, getStringList, getValues, getWithItemsList, isOracleSiblings, orderByToString, orderByToString, setFetch, setForClause, setIsolation, setLimit, setLimitBy, setOffset, setOracleSiblings, setOrderByElements, setWithItemsList, toString, withFetch, withIsolation, withLimit, withLimitBy, withOffset, withOracleSiblings, withOrderByElements, withWithItemsList
-
Methods inherited from class net.sf.jsqlparser.parser.ASTNodeAccessImpl
getASTNode, 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
-
-
-
-
Field Detail
-
expressions
private ExpressionList<Expression> expressions
-
-
Constructor Detail
-
Values
public Values()
-
Values
public Values(ExpressionList<Expression> expressions)
-
-
Method Detail
-
getExpressions
public ExpressionList<?> getExpressions()
-
setExpressions
public void setExpressions(ExpressionList<Expression> expressions)
-
appendSelectBodyTo
public java.lang.StringBuilder appendSelectBodyTo(java.lang.StringBuilder builder)
- Specified by:
appendSelectBodyTo
in classSelect
-
accept
public void accept(SelectVisitor selectVisitor)
-
withExpressions
public Values withExpressions(ExpressionList<Expression> expressions)
-
addExpressions
public Values addExpressions(Expression... expressions)
-
addExpressions
public Values addExpressions(java.util.Collection<? extends Expression> expressions)
-
-