com.interfaceware.chameleon
Class DataType

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

public class DataType
extends java.lang.Object

This class handles data type constants. It's effectively an enumeration of the four basic data types supported in Chameleon tables.


Field Summary
static byte DateType
          Date Time type.
static byte DoubleType
          Double type.
static byte IntegerType
          Integer type.
static byte StringType
          String type.
 
Constructor Summary
DataType()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

StringType

public static final byte StringType
String type.

See Also:
Constant Field Values

IntegerType

public static final byte IntegerType
Integer type.

See Also:
Constant Field Values

DoubleType

public static final byte DoubleType
Double type.

See Also:
Constant Field Values

DateType

public static final byte DateType
Date Time type.

See Also:
Constant Field Values
Constructor Detail

DataType

public DataType()