public static enum DataType.DataTypes extends Enum<DataType.DataTypes>
Enum Constant and Description |
---|
BOOLEAN |
DATE |
NUMERIC |
NUMERIC_BIGDECIMAL |
NUMERIC_BIGINTEGER |
NUMERIC_BYTE |
NUMERIC_DOUBLE |
NUMERIC_FLOAT |
NUMERIC_INTEGER |
NUMERIC_LONG |
NUMERIC_SHORT |
STRING |
Modifier and Type | Method and Description |
---|---|
static DataType.DataTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataType.DataTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataType.DataTypes STRING
public static final DataType.DataTypes NUMERIC
public static final DataType.DataTypes NUMERIC_BIGDECIMAL
public static final DataType.DataTypes NUMERIC_BIGINTEGER
public static final DataType.DataTypes NUMERIC_BYTE
public static final DataType.DataTypes NUMERIC_DOUBLE
public static final DataType.DataTypes NUMERIC_FLOAT
public static final DataType.DataTypes NUMERIC_INTEGER
public static final DataType.DataTypes NUMERIC_LONG
public static final DataType.DataTypes NUMERIC_SHORT
public static final DataType.DataTypes DATE
public static final DataType.DataTypes BOOLEAN
public static DataType.DataTypes[] values()
for (DataType.DataTypes c : DataType.DataTypes.values()) System.out.println(c);
public static DataType.DataTypes 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 © 2001–2018 JBoss by Red Hat. All rights reserved.