Package ru.curs.celesta.score
Class TableRef
- java.lang.Object
-
- ru.curs.celesta.score.TableRef
-
public class TableRef extends Object
Table reference in SQL query.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TableRef.JoinType
JOIN type.
-
Constructor Summary
Constructors Constructor Description TableRef(TableElement table, String alias)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAlias()
Returns table alias.TableRef.JoinType
getJoinType()
Returns JOIN type.Expr
getOnExpr()
Returns condition ON...TableElement
getTable()
Returns table.
-
-
-
Constructor Detail
-
TableRef
public TableRef(TableElement table, String alias)
-
-
Method Detail
-
getJoinType
public TableRef.JoinType getJoinType()
Returns JOIN type.
-
getTable
public TableElement getTable()
Returns table.
-
getOnExpr
public Expr getOnExpr()
Returns condition ON...
-
getAlias
public String getAlias()
Returns table alias.
-
-