Package org.datanucleus.store.rdbms.sql
Class SQLTable
- java.lang.Object
-
- org.datanucleus.store.rdbms.sql.SQLTable
-
public class SQLTable extends Object
Representation of a table reference in an SQL statement. Has a table, and an alias.
-
-
Field Summary
Fields Modifier and Type Field Description protected DatastoreIdentifier
alias
protected String
groupName
protected SQLStatement
stmt
protected Table
table
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
DatastoreIdentifier
getAlias()
String
getGroupName()
SQLStatement
getSQLStatement()
Table
getTable()
int
hashCode()
String
toString()
Stringifier method to return this "table" in a form for use in SQL statements.
-
-
-
Field Detail
-
stmt
protected SQLStatement stmt
-
table
protected Table table
-
alias
protected DatastoreIdentifier alias
-
groupName
protected String groupName
-
-
Method Detail
-
getSQLStatement
public SQLStatement getSQLStatement()
-
getTable
public Table getTable()
-
getAlias
public DatastoreIdentifier getAlias()
-
getGroupName
public String getGroupName()
-
-