public static enum ERWinBase.ColumnProperties extends java.lang.Enum<ERWinBase.ColumnProperties>
Enum Constant and Description |
---|
DATATYPE
DATATYPE is the column property which specifies the type of the data a column holds.
|
LENGTH
LENGTH is the column property which specifies the length of data the specific column can allow to hold.
|
PRECISION
PRECISION is the column property which specifies the number of significant digits.
|
SCALE
SCALE is the column property which specifies the number of digits to the right of the decimal point.
|
Modifier and Type | Method and Description |
---|---|
static ERWinBase.ColumnProperties |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ERWinBase.ColumnProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ERWinBase.ColumnProperties DATATYPE
public static final ERWinBase.ColumnProperties LENGTH
public static final ERWinBase.ColumnProperties PRECISION
public static final ERWinBase.ColumnProperties SCALE
public static ERWinBase.ColumnProperties[] values()
for (ERWinBase.ColumnProperties c : ERWinBase.ColumnProperties.values()) System.out.println(c);
public static ERWinBase.ColumnProperties valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null