Class ParenthesedFromItem
- java.lang.Object
-
- net.sf.jsqlparser.statement.select.ParenthesedFromItem
-
public class ParenthesedFromItem extends java.lang.Object 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 void
accept(FromItemVisitor fromItemVisitor)
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 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.sf.jsqlparser.statement.select.FromItem
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()
-
getJoin
public Join getJoin(int index)
-
setJoins
public void setJoins(java.util.List<Join> list)
-
accept
public void accept(FromItemVisitor fromItemVisitor)
-
appendTo
public java.lang.StringBuilder appendTo(java.lang.StringBuilder builder)
-
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)
-
-