- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.statement.select.Select
-
- net.sf.jsqlparser.statement.select.TableStatement
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
,Model
,ASTNodeAccess
,FromItem
,Statement
public class TableStatement extends Select
- See Also:
- `TABLE table_name [ORDER BY column_name] [LIMIT number [OFFSET number]]` Union not currently supported, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private Table
table
-
Fields inherited from class net.sf.jsqlparser.statement.select.Select
alias, fetch, forClause, forMode, forUpdateTable, isolation, limit, limitBy, offset, oracleSiblings, orderByElements, pivot, unPivot, withItemsList
-
-
Constructor Summary
Constructors Constructor Description TableStatement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T,S>
Taccept(FromItemVisitor<T> fromItemVisitor, S context)
<T,S>
Taccept(SelectVisitor<T> selectVisitor, S context)
java.lang.StringBuilder
appendSelectBodyTo(java.lang.StringBuilder builder)
java.lang.StringBuilder
appendTo(java.lang.StringBuilder builder)
Table
getTable()
void
setTable(Table table)
-
Methods inherited from class net.sf.jsqlparser.statement.select.Select
accept, accept, addOrderByElements, addOrderByElements, addOrderByElements, addOrderByExpressions, addWithItemsList, addWithItemsList, appendStringListTo, as, getAlias, getFetch, getForClause, getFormattedList, getFormattedList, getForMode, getForUpdateTable, getIsolation, getLimit, getLimitBy, getOffset, getOrderByElements, getPivot, getPlainSelect, getSelectBody, getSetOperationList, getStringList, getStringList, getUnPivot, getValues, getWait, getWithItemsList, isNoWait, isOracleSiblings, isSkipLocked, orderByToString, orderByToString, setAlias, setFetch, setForClause, setForMode, setForUpdateTable, setIsolation, setLimit, setLimitBy, setNoWait, setOffset, setOracleSiblings, setOrderByElements, setPivot, setSkipLocked, setUnPivot, setWait, setWithItemsList, toString, withAlias, withFetch, withForMode, withForUpdateTable, withIsolation, withLimit, withLimitBy, withOffset, withOracleSiblings, withOrderByElements, withSkipLocked, withWait, withWithItemsList
-
Methods inherited from class net.sf.jsqlparser.parser.ASTNodeAccessImpl
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
-
table
private Table table
-
-
Method Detail
-
getTable
public Table getTable()
-
setTable
public void setTable(Table table)
-
appendSelectBodyTo
public java.lang.StringBuilder appendSelectBodyTo(java.lang.StringBuilder builder)
- Specified by:
appendSelectBodyTo
in classSelect
-
appendTo
public java.lang.StringBuilder appendTo(java.lang.StringBuilder builder)
-
accept
public <T,S> T accept(SelectVisitor<T> selectVisitor, S context)
-
accept
public <T,S> T accept(FromItemVisitor<T> fromItemVisitor, S context)
-
-