public class WithItem extends java.lang.Object implements SelectBody
| 构造器和说明 |
|---|
WithItem() |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
accept(SelectVisitor visitor) |
java.lang.String |
getName()
The name of this WITH item (for example, "myWITH" in "WITH myWITH AS (SELECT A,B,C))"
|
SelectBody |
getSelectBody()
The
SelectBody of this WITH item is the part after the "AS" keyword |
java.util.List<SelectItem> |
getWithItemList()
The
SelectItems in this WITH (for example the A,B,C in "WITH mywith (A,B,C) AS ...") |
boolean |
isRecursive() |
void |
setName(java.lang.String name) |
void |
setRecursive(boolean recursive) |
void |
setSelectBody(SelectBody selectBody) |
void |
setWithItemList(java.util.List<SelectItem> withItemList) |
java.lang.String |
toString() |
public java.lang.String getName()
public void setName(java.lang.String name)
public boolean isRecursive()
public void setRecursive(boolean recursive)
public SelectBody getSelectBody()
SelectBody of this WITH item is the part after the "AS" keywordSelectBody of this WITH itempublic void setSelectBody(SelectBody selectBody)
public java.util.List<SelectItem> getWithItemList()
SelectItems in this WITH (for example the A,B,C in "WITH mywith (A,B,C) AS ...")SelectItemspublic void setWithItemList(java.util.List<SelectItem> withItemList)
public java.lang.String toString()
toString 在类中 java.lang.Objectpublic void accept(SelectVisitor visitor)
accept 在接口中 SelectBody