public enum SysDataType extends Enum<SysDataType> implements PlasmaEnum
| Enum Constant and Description |
|---|
BFILE
The BFILE datatype stores unstructured binary data in
operating-system files outside the database.
|
BINARY__DOUBLE
BINARY_DOUBLE is a 64-bit, double-precision floating-
point number datatype.
|
BINARY__FLOAT
BINARY_FLOAT is a 32-bit, single-precision floating-point
number datatype.
|
BLOB
The BLOB datatype stores unstructured binary data in the
database.
|
CHAR
The CHAR datatype stores fixed-length character strings.
|
CLOB
The CLOB and NCLOB datatypes store up to 128 terabytes of
character data in the database.
|
DATE
The DATE datatype stores point-in-time values (dates and
times) in a table.
|
LONG
Columns defined as LONG can store variable-length
character data containing up to 2 gigabytes of
information.
|
NCHAR
The NCHAR datatype stores fixed-length character strings
that correspond to the national character set.
|
NCLOB
The CLOB and NCLOB datatypes store up to 128 terabytes of
character data in the database.
|
NUMBER
The NUMBER datatype stores fixed and floating-point numbers.
|
NVARCHAR2
The NVARCHAR2 datatype stores variable length character
strings.
|
RAW
RAW is a variable-length datatype like the VARCHAR2
character datatype, except Oracle Net Services (which
connects user sessions to the instance) and the Import
and Export utilities do not perform character conversion
when transmitting RAW or LONG RAW data.
|
ROWID
Oracle Database uses a ROWID datatype to store the
address (rowid) of every row in the database.
|
TIMESTAMP
Holds the logical and physical names for literal TIMESTAMP.
|
UROWID
Oracle Database uses a ROWID datatype to store the
address (rowid) of every row in the database.
|
VARCHAR
The VARCHAR datatype is synonymous with the VARCHAR2
datatype.
|
VARCHAR2
The VARCHAR2 datatype stores variable-length character
strings.
|
| Modifier and Type | Method and Description |
|---|---|
static PlasmaEnum[] |
enumValues()
Returns the enum values for this class as an array of implemented interfaces
|
static SysDataType |
fromInstanceName(String instanceName)
Returns the enumeration value matching the given physical or instance name.
|
static SysDataType |
fromName(String name)
Returns the enumeration value matching the given name.
|
String |
getDescription()
Returns the descriptive text associated with this enumeration literal.
|
String |
getInstanceName()
Returns the physical or instance name associated with this enumeration literal.
|
String |
getName()
Returns the logical name associated with this enumeration literal.
|
static SysDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SysDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SysDataType CHAR
public static final SysDataType VARCHAR2
public static final SysDataType VARCHAR
public static final SysDataType NCHAR
public static final SysDataType NVARCHAR2
public static final SysDataType LONG
public static final SysDataType NUMBER
public static final SysDataType BINARY__FLOAT
public static final SysDataType BINARY__DOUBLE
public static final SysDataType DATE
public static final SysDataType TIMESTAMP
public static final SysDataType BLOB
public static final SysDataType CLOB
public static final SysDataType NCLOB
public static final SysDataType BFILE
public static final SysDataType RAW
public static final SysDataType ROWID
public static final SysDataType UROWID
public static SysDataType[] values()
for (SysDataType c : SysDataType.values()) System.out.println(c);
public static SysDataType 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 nullpublic String getName()
getName in interface PlasmaEnumpublic String getInstanceName()
getInstanceName in interface PlasmaEnumpublic String getDescription()
getDescription in interface PlasmaEnumpublic static PlasmaEnum[] enumValues()
PlasmaEnumpublic static SysDataType fromName(String name)
public static SysDataType fromInstanceName(String instanceName)
Copyright © 2017. All rights reserved.