public interface Column
Modifier and Type | Field and Description |
---|---|
static int |
BIGDECIMAL |
static int |
BLOB |
static int |
BOOLEAN |
static int |
BYTE |
static int |
BYTES |
static int |
CLOB |
static int |
DATE |
static int |
DOUBLE |
static int |
FLOAT |
static int |
INTEGER |
static int |
LONG |
static int |
OBJECT |
static int |
SHORT |
static int |
STRING |
static int |
TIME |
static int |
TIMESTAMP |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName()
Returns the value of the Name attribute
|
java.lang.String |
getPropertyName()
Returns the value of the Property Name attribute
|
Table |
getTable()
Return the '
Table ' object that contains this Column |
int |
getType()
Returns the type of this Column object
|
boolean |
isNullable()
Returns the value of the Nullable attribute
|
void |
setName(java.lang.String value)
Sets the value of the '
Name ' attribute |
void |
setNullable(boolean value)
Sets the value of the '
Nullable ' attribute |
void |
setPropertyName(java.lang.String value)
Sets the value of the '
Property Name ' attribute |
void |
setTable(Table value)
Sets the value of the '
Table ' container reference |
void |
setType(int value)
Sets the value of the '
Type ' attribute |
static final int INTEGER
static final int BOOLEAN
static final int BYTE
static final int SHORT
static final int STRING
static final int DOUBLE
static final int LONG
static final int FLOAT
static final int OBJECT
static final int BIGDECIMAL
static final int DATE
static final int TIME
static final int TIMESTAMP
static final int BLOB
static final int CLOB
static final int BYTES
java.lang.String getPropertyName()
void setPropertyName(java.lang.String value)
Property Name
' attribute.
value
- the new value of the 'Property Name' attribute.getPropertyName()
java.lang.String getName()
void setName(java.lang.String value)
Name
' attribute.
value
- the new value of the 'Name' attribute.getName()
int getType()
void setType(int value)
Type
' attribute.
value
- the new value of the 'Type' attribute.getType()
boolean isNullable()
void setNullable(boolean value)
Nullable
' attribute.
value
- the new value of the 'Nullable' attribute.isNullable()
Table getTable()
Table
' object that contains this Column.
void setTable(Table value)
Table
' container reference.
value
- the new value of the 'Table' container reference.getTable()