- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.statement.select.Select
-
- net.sf.jsqlparser.statement.select.ParenthesedSelect
-
- net.sf.jsqlparser.statement.select.LateralSubSelect
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
,Model
,ASTNodeAccess
,FromItem
,Statement
public class LateralSubSelect extends ParenthesedSelect
lateral sub select- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
prefix
-
Fields inherited from class net.sf.jsqlparser.statement.select.ParenthesedSelect
alias, pivot, select, unPivot
-
Fields inherited from class net.sf.jsqlparser.statement.select.Select
fetch, forClause, forMode, forUpdateTable, isolation, limit, limitBy, offset, oracleSiblings, orderByElements, withItemsList
-
-
Constructor Summary
Constructors Constructor Description LateralSubSelect()
LateralSubSelect(java.lang.String prefix)
LateralSubSelect(java.lang.String prefix, Select select)
LateralSubSelect(java.lang.String prefix, Select select, Alias alias)
LateralSubSelect(Select select, Alias alias)
-
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.String
getPrefix()
void
setPrefix(java.lang.String prefix)
java.lang.String
toString()
LateralSubSelect
withAlias(Alias alias)
LateralSubSelect
withPrefix(java.lang.String prefix)
LateralSubSelect
withSelect(Select select)
-
Methods inherited from class net.sf.jsqlparser.statement.select.ParenthesedSelect
appendSelectBodyTo, getAlias, getPivot, getPlainSelect, getSelect, getSetOperationList, getUnPivot, getValues, setAlias, setPivot, setSelect, setUnPivot, withOrderByElements
-
Methods inherited from class net.sf.jsqlparser.statement.select.Select
accept, accept, addOrderByElements, addOrderByElements, addOrderByElements, addOrderByExpressions, addWithItemsList, addWithItemsList, appendStringListTo, appendTo, as, getFetch, getForClause, getFormattedList, getFormattedList, getForMode, getForUpdateTable, getIsolation, getLimit, getLimitBy, getOffset, getOrderByElements, getSelectBody, getStringList, getStringList, getWait, getWithItemsList, isNoWait, isOracleSiblings, isSkipLocked, orderByToString, orderByToString, setFetch, setForClause, setForMode, setForUpdateTable, setIsolation, setLimit, setLimitBy, setNoWait, setOffset, setOracleSiblings, setOrderByElements, setSkipLocked, setWait, setWithItemsList, withFetch, withForMode, withForUpdateTable, withIsolation, withLimit, withLimitBy, withOffset, withOracleSiblings, 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
-
Methods inherited from interface net.sf.jsqlparser.statement.select.FromItem
accept, withPivot, withUnPivot
-
-
-
-
Constructor Detail
-
LateralSubSelect
public LateralSubSelect()
-
LateralSubSelect
public LateralSubSelect(java.lang.String prefix)
-
LateralSubSelect
public LateralSubSelect(java.lang.String prefix, Select select)
-
-
Method Detail
-
getPrefix
public java.lang.String getPrefix()
-
setPrefix
public void setPrefix(java.lang.String prefix)
-
withPrefix
public LateralSubSelect withPrefix(java.lang.String prefix)
-
withSelect
public LateralSubSelect withSelect(Select select)
- Overrides:
withSelect
in classParenthesedSelect
-
withAlias
public LateralSubSelect withAlias(Alias alias)
- Specified by:
withAlias
in interfaceFromItem
- Overrides:
withAlias
in classParenthesedSelect
-
accept
public <T,S> T accept(SelectVisitor<T> selectVisitor, S context)
- Overrides:
accept
in classParenthesedSelect
-
accept
public <T,S> T accept(FromItemVisitor<T> fromItemVisitor, S context)
- Specified by:
accept
in interfaceFromItem
- Overrides:
accept
in classParenthesedSelect
-
-