| java.lang.Object org.axiondb.BaseSelectable org.axiondb.ColumnIdentifier
ColumnIdentifier | public class ColumnIdentifier extends BaseSelectable implements Selectable(Code) | | An identifier for a column.
Column names and aliases always stored (and returned) in upper case.
version: $Revision: 1.25 $ $Date: 2006/01/10 21:02:37 $ author: Rodney Waldhoff author: Chuck Burdick author: Ahimanikya Satapathy |
ColumnIdentifier | public ColumnIdentifier(String column)(Code) | | Parameters: column - the local name of my column |
ColumnIdentifier | public ColumnIdentifier(TableIdentifier table, String columnName)(Code) | | Parameters: table - my table, which may be null Parameters: column - my column |
ColumnIdentifier | public ColumnIdentifier(TableIdentifier table, String columnName, String columnAlias)(Code) | | Parameters: table - my table, which may be null Parameters: column - my column Parameters: columnAlias - the alias for my column, which may be null |
ColumnIdentifier | public ColumnIdentifier(TableIdentifier table, String columnName, String columnAlias, DataType type)(Code) | | Parameters: table - my table, which may be null Parameters: column - my column Parameters: columnAlias - the alias for my column, which may be null Parameters: type - the DataTypeof my column, which may be null |
equals | public boolean equals(Object otherobject)(Code) | | Returns true iff otherobject is a
ColumnIdentifier whose name, table identifier, and alias are equal to mine.
|
getTableIdentifier | final public TableIdentifier getTableIdentifier()(Code) | | Returns my table identifier, if any.
|
setName | public void setName(String column)(Code) | | Sets the name of this column, and the name of my table if the given name includes "
. ".
|
setTableIdentifier | public void setTableIdentifier(TableIdentifier table)(Code) | | Sets my table identifier, if any.
|
toString | public String toString()(Code) | | Returns a String representation of me, suitable for debugging
output.
|
Fields inherited from org.axiondb.BaseSelectable | protected int _hash(Code)(Java Doc)
|
|
|