Class LateralSubSelect
- 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, isolation, limit, limitBy, offset, oracleSiblings, orderByElements, withItemsList
-
-
Constructor Summary
Constructors Constructor Description LateralSubSelect()
LateralSubSelect(java.lang.String prefix)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(FromItemVisitor fromItemVisitor)
void
accept(SelectVisitor selectVisitor)
java.lang.String
getPrefix()
void
setPrefix(java.lang.String prefix)
java.lang.String
toString()
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, withAlias
-
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, getSelectBody, getStringList, getStringList, getWithItemsList, isOracleSiblings, orderByToString, orderByToString, setFetch, setForClause, setIsolation, setLimit, setLimitBy, setOffset, setOracleSiblings, setOrderByElements, setWithItemsList, 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
-
Methods inherited from interface net.sf.jsqlparser.statement.select.FromItem
withPivot, withUnPivot
-
-
-
-
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
-
accept
public void accept(SelectVisitor selectVisitor)
- Overrides:
accept
in classParenthesedSelect
-
accept
public void accept(FromItemVisitor fromItemVisitor)
- Specified by:
accept
in interfaceFromItem
- Overrides:
accept
in classParenthesedSelect
-
-