public static enum TableColumn.PROPERTY extends Enum<TableColumn.PROPERTY>
| Enum Constant and Description |
|---|
characterSetName
Name of the character set: CHAR_CS or NCHAR_CS
|
column_id
Sequence number of the column as created
|
columnName
Column name
|
dataDefault
Default value for the column
|
dataLength
Length of the column (in bytes)
|
dataPrecision
Decimal precision (total number of digits) for NUMBER
datatype; binary precision for FLOAT datatype, null for
all other datatypes.
|
dataScale
Digits to right of decimal point in a number
|
dataType
Datatype of the column
|
nullable
Specifies whether a column allows NULLs.
|
owner
Owner of the table, view, or cluster
|
table
Reference to the owner table
|
| Modifier and Type | Method and Description |
|---|---|
static TableColumn.PROPERTY |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableColumn.PROPERTY[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableColumn.PROPERTY columnName
public static final TableColumn.PROPERTY dataType
public static final TableColumn.PROPERTY nullable
public static final TableColumn.PROPERTY column_id
public static final TableColumn.PROPERTY dataLength
public static final TableColumn.PROPERTY dataPrecision
public static final TableColumn.PROPERTY dataScale
public static final TableColumn.PROPERTY dataDefault
public static final TableColumn.PROPERTY characterSetName
public static final TableColumn.PROPERTY owner
public static final TableColumn.PROPERTY table
public static TableColumn.PROPERTY[] values()
for (TableColumn.PROPERTY c : TableColumn.PROPERTY.values()) System.out.println(c);
public static TableColumn.PROPERTY valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.