org.apache.ws.jaxme.sqls
Interface Column.Type

All Known Implementing Classes:
ColumnImpl.TypeImpl
Enclosing interface:
Column

public static interface Column.Type


Field Summary
static Column.Type BIGINT
           
static Column.Type BINARY
           
static Column.Type BIT
           
static Column.Type BLOB
           
static Column.Type CHAR
           
static Column.Type CLOB
           
static Column.Type DATE
           
static Column.Type DOUBLE
           
static Column.Type FLOAT
           
static Column.Type INTEGER
           
static Column.Type OTHER
           
static Column.Type SMALLINT
           
static Column.Type TIME
           
static Column.Type TIMESTAMP
           
static Column.Type TINYINT
           
static Column.Type VARBINARY
           
static Column.Type VARCHAR
           
 
Method Summary
 int getJDBCType()
          Returns the types JDBC type.
 java.lang.String getName()
          Returns the types name.
 

Field Detail

BIGINT

public static final Column.Type BIGINT

BINARY

public static final Column.Type BINARY

BIT

public static final Column.Type BIT

CHAR

public static final Column.Type CHAR

DATE

public static final Column.Type DATE

INTEGER

public static final Column.Type INTEGER

FLOAT

public static final Column.Type FLOAT

DOUBLE

public static final Column.Type DOUBLE

SMALLINT

public static final Column.Type SMALLINT

TIME

public static final Column.Type TIME

TIMESTAMP

public static final Column.Type TIMESTAMP

TINYINT

public static final Column.Type TINYINT

VARCHAR

public static final Column.Type VARCHAR

VARBINARY

public static final Column.Type VARBINARY

BLOB

public static final Column.Type BLOB

OTHER

public static final Column.Type OTHER

CLOB

public static final Column.Type CLOB
Method Detail

getName

public java.lang.String getName()

Returns the types name. The types name is human readable.


getJDBCType

public int getJDBCType()

Returns the types JDBC type. The JDBC type is a constant, as specified by Types.