public class WithItem
extends java.lang.Object
Description: One of the parts of a "WITH" clause of a "SELECT" statement
Title:首亨软件 - TSS/CRM等
构造器和说明 |
---|
WithItem() |
限定符和类型 | 方法和说明 |
---|---|
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 |
getWithItemList()
The
SelectItem s in this WITH (for example the A,B,C in
"WITH mywith (A,B,C) AS ...") |
void |
setName(java.lang.String name) |
void |
setSelectBody(SelectBody selectBody) |
void |
setWithItemList(java.util.List withItemList) |
java.lang.String |
toString() |
public java.lang.String getName()
public void setName(java.lang.String name)
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 getWithItemList()
SelectItem
s in this WITH (for example the A,B,C in
"WITH mywith (A,B,C) AS ...")SelectItem
spublic void setWithItemList(java.util.List withItemList)
public java.lang.String toString()
toString
在类中 java.lang.Object