Package mdbtools.dbengine.sql
Class Join
- java.lang.Object
-
- mdbtools.dbengine.sql.Join
-
public class Join extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static int
INNER
-
Constructor Summary
Constructors Constructor Description Join()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Equation
getEquation()
Object
getLeft()
Table
getRight()
int
getType()
void
setEquation(Equation equation)
void
setLeft(Object left)
void
setRight(Table right)
void
setType(int type)
String
toString()
String
toString(Select sql)
-
-
-
Field Detail
-
INNER
public static final int INNER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getLeft
public Object getLeft()
-
setLeft
public void setLeft(Object left)
-
setRight
public void setRight(Table right)
-
getRight
public Table getRight()
-
getType
public int getType()
-
setType
public void setType(int type)
-
getEquation
public Equation getEquation()
-
setEquation
public void setEquation(Equation equation)
-
-