org.drools.workbench.models.commons.shared.oracle.model
Enum DataType.DataTypes
java.lang.Object
java.lang.Enum<DataType.DataTypes>
org.drools.workbench.models.commons.shared.oracle.model.DataType.DataTypes
- All Implemented Interfaces:
- Serializable, Comparable<DataType.DataTypes>
- Enclosing class:
- DataType
public static enum DataType.DataTypes
- extends Enum<DataType.DataTypes>
STRING
public static final DataType.DataTypes STRING
NUMERIC
public static final DataType.DataTypes NUMERIC
NUMERIC_BIGDECIMAL
public static final DataType.DataTypes NUMERIC_BIGDECIMAL
NUMERIC_BIGINTEGER
public static final DataType.DataTypes NUMERIC_BIGINTEGER
NUMERIC_BYTE
public static final DataType.DataTypes NUMERIC_BYTE
NUMERIC_DOUBLE
public static final DataType.DataTypes NUMERIC_DOUBLE
NUMERIC_FLOAT
public static final DataType.DataTypes NUMERIC_FLOAT
NUMERIC_INTEGER
public static final DataType.DataTypes NUMERIC_INTEGER
NUMERIC_LONG
public static final DataType.DataTypes NUMERIC_LONG
NUMERIC_SHORT
public static final DataType.DataTypes NUMERIC_SHORT
DATE
public static final DataType.DataTypes DATE
BOOLEAN
public static final DataType.DataTypes BOOLEAN
values
public static DataType.DataTypes[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (DataType.DataTypes c : DataType.DataTypes.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static DataType.DataTypes valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2001-2013 JBoss by Red Hat. All Rights Reserved.