public class Join
extends java.lang.Object
构造器和说明 |
---|
Join() |
限定符和类型 | 方法和说明 |
---|---|
Expression |
getOnExpression()
Returns the "ON" expression (if any)
|
FromItem |
getRightItem()
Returns the right item of the join
|
java.util.List<Column> |
getUsingColumns()
Returns the "USING" list of
Column s (if any) |
boolean |
isCross() |
boolean |
isFull()
Whether is a "FULL" join
|
boolean |
isInner()
Whether is a "INNER" join
|
boolean |
isLeft()
Whether is a "LEFT" join
|
boolean |
isNatural()
Whether is a "NATURAL" join
|
boolean |
isOuter()
Whether is a "OUTER" join
|
boolean |
isRight()
Whether is a "RIGHT" join
|
boolean |
isSemi()
Whether is a "SEMI" join
|
boolean |
isSimple()
Whether is a tab1,tab2 join
|
void |
setCross(boolean cross) |
void |
setFull(boolean b) |
void |
setInner(boolean b) |
void |
setLeft(boolean b) |
void |
setNatural(boolean b) |
void |
setOnExpression(Expression expression) |
void |
setOuter(boolean b) |
void |
setRight(boolean b) |
void |
setRightItem(FromItem item) |
void |
setSemi(boolean b) |
void |
setSimple(boolean b) |
void |
setUsingColumns(java.util.List<Column> list) |
java.lang.String |
toString() |
public boolean isSimple()
public void setSimple(boolean b)
public boolean isInner()
public void setInner(boolean b)
public boolean isOuter()
public void setOuter(boolean b)
public boolean isSemi()
public void setSemi(boolean b)
public boolean isLeft()
public void setLeft(boolean b)
public boolean isRight()
public void setRight(boolean b)
public boolean isNatural()
public void setNatural(boolean b)
public boolean isFull()
public void setFull(boolean b)
public boolean isCross()
public void setCross(boolean cross)
public FromItem getRightItem()
public void setRightItem(FromItem item)
public Expression getOnExpression()
public void setOnExpression(Expression expression)
public java.util.List<Column> getUsingColumns()
Column
s (if any)public void setUsingColumns(java.util.List<Column> list)
public java.lang.String toString()
toString
在类中 java.lang.Object