- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.statement.select.ParenthesedFromItem
-
- All Implemented Interfaces:
java.io.Serializable
,ASTNodeAccess
,FromItem
public class ParenthesedFromItem extends ASTNodeAccessImpl implements FromItem
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParenthesedFromItem()
ParenthesedFromItem(FromItem fromItem)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T,S>
Taccept(FromItemVisitor<T> fromItemVisitor, S context)
FromItem
addJoins(Join... joins)
java.lang.StringBuilder
appendTo(java.lang.StringBuilder builder)
Alias
getAlias()
FromItem
getFromItem()
<E extends FromItem>
EgetFromItem(java.lang.Class<E> type)
Join
getJoin(int index)
java.util.List<Join>
getJoins()
Pivot
getPivot()
UnPivot
getUnPivot()
void
setAlias(Alias alias)
void
setFromItem(FromItem fromItem)
void
setJoins(java.util.List<Join> list)
void
setPivot(Pivot pivot)
void
setUnPivot(UnPivot unpivot)
java.lang.String
toString()
ParenthesedFromItem
withAlias(Alias alias)
ParenthesedFromItem
withFromItem(FromItem fromItem)
FromItem
withJoins(java.util.List<Join> joins)
-
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.statement.select.FromItem
accept, withPivot, withUnPivot
-
-
-
-
Constructor Detail
-
ParenthesedFromItem
public ParenthesedFromItem()
-
ParenthesedFromItem
public ParenthesedFromItem(FromItem fromItem)
-
-
Method Detail
-
getFromItem
public FromItem getFromItem()
-
setFromItem
public final void setFromItem(FromItem fromItem)
-
getJoins
public java.util.List<Join> getJoins()
-
setJoins
public void setJoins(java.util.List<Join> list)
-
getJoin
public Join getJoin(int index)
-
accept
public <T,S> T accept(FromItemVisitor<T> fromItemVisitor, S context)
-
appendTo
public java.lang.StringBuilder appendTo(java.lang.StringBuilder builder)
- Overrides:
appendTo
in classASTNodeAccessImpl
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getUnPivot
public UnPivot getUnPivot()
- Specified by:
getUnPivot
in interfaceFromItem
-
setUnPivot
public void setUnPivot(UnPivot unpivot)
- Specified by:
setUnPivot
in interfaceFromItem
-
withFromItem
public ParenthesedFromItem withFromItem(FromItem fromItem)
-
withAlias
public ParenthesedFromItem withAlias(Alias alias)
-
getFromItem
public <E extends FromItem> E getFromItem(java.lang.Class<E> type)
-
-