com.interfaceware.chameleon
Class Column

java.lang.Object
  extended by com.interfaceware.chameleon.Column

public class Column
extends java.lang.Object

This class is used in the internal implementation of Chameleon; it handles table columns. Customers should not attempt to use this class directly.


Constructor Summary
Column(java.lang.String ColumnName, byte DataType)
          Construct a Column object with the specified name and data type.
 
Method Summary
 byte dataType()
          Get the column data type.
 java.lang.String name()
          Get the column name.
 java.lang.String toString()
          Get the concatenated column name and data type.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Column

public Column(java.lang.String ColumnName,
              byte DataType)
Construct a Column object with the specified name and data type.

Method Detail

name

public java.lang.String name()
Get the column name.


dataType

public byte dataType()
Get the column data type.


toString

public final java.lang.String toString()
Get the concatenated column name and data type. For example, if the column name is "Name" and the data type is string, this method will return "[NameString]".

Overrides:
toString in class java.lang.Object