com.jdc.rdb.tbl.col
Class TableColumn
java.lang.Object
|
+--com.jdc.lang.Object
|
+--com.jdc.lang.SerializableObject
|
+--com.jdc.rdb.Column
|
+--com.jdc.rdb.tbl.col.TableColumn
- All Implemented Interfaces:
- Column, Serializable
- public class TableColumn
- extends Column
TableColumn represents a table column that contains an unknown
database table column definition.
- Version:
- 1.0
- Author:
- Jay Damon
- See Also:
- Serialized Form
| Fields inherited from interface com.jdc.db.Column |
NULL |
|
Constructor Summary |
TableColumn(DataType type,
String name,
String alias,
boolean allowNull)
Constructs a new TableColumn object for the specified column
type, name, alias, and allow null status. |
TableColumn(DataType type,
String name,
String alias,
int length,
boolean allowNull)
Constructs a new TableColumn object for the specified column
type, name, alias, length, and allow null status. |
TableColumn(DataType type,
String name,
String alias,
int precision,
int scale,
boolean allowNull)
Constructs a new TableColumn object for the specified column
type, name, alias, precision, scale, and allow null status. |
|
Method Summary |
Column |
newInstance(Column column,
String alias,
boolean allowNull)
Returns a new Column instance with the specified column attributes,
alias, and allow null status. |
TableColumn
public TableColumn(DataType type,
String name,
String alias,
boolean allowNull)
- Constructs a new
TableColumn object for the specified column
type, name, alias, and allow null status.
TableColumn
public TableColumn(DataType type,
String name,
String alias,
int length,
boolean allowNull)
- Constructs a new
TableColumn object for the specified column
type, name, alias, length, and allow null status.
TableColumn
public TableColumn(DataType type,
String name,
String alias,
int precision,
int scale,
boolean allowNull)
- Constructs a new
TableColumn object for the specified column
type, name, alias, precision, scale, and allow null status.
newInstance
public Column newInstance(Column column,
String alias,
boolean allowNull)
- Description copied from interface:
Column
- Returns a new
Column instance with the specified column attributes,
alias, and allow null status.
Copyright © 2004 J. Damon & Co.; All Rights Reserved WorldWide.