public enum OracleCmdParamsType extends java.lang.Enum<OracleCmdParamsType>
Enum Constant | Description |
---|---|
BFile |
The BFILE datatype stores unstructured binary data in operating-system files outside the database.
|
Blob |
The BLOB datatype stores unstructured binary data in the database.
|
Byte |
Allows whole numbers from 0 to 255
|
Char |
The CHAR datatype stores fixed-length character strings.
|
Clob |
The CLOB 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.
|
Decimal |
Decimal number datatype.
|
Double |
64-bit, double-precision floating-point number datatype.
|
Int16 |
A 16-bit signed integer.
|
Int32 |
A 32-bit signed integer.
|
Int64 |
A 64-bit signed integer.
|
IntervalDS |
Interval Day to Second literal.
|
IntervalYM |
Interval Year to Month Literal.
|
Long |
Long can store variable-length character data containing up to 2 gigabytes of information.
|
LongRaw |
The LONG RAW datatypes is used for data that is not to be interpreted (not converted when moving data between different systems) by Oracle Database.
|
NChar |
The maximum length of an NCHAR column is 2000 bytes.
|
NClob |
The NCLOB datatypes store up to 128 terabytes of character data in the database.
|
NVarchar2 |
The maximum length of an NVARCHAR2 column is 4000 bytes.
|
Raw |
The Raw datatype is used for data that is not to be interpreted (not converted when moving data between different systems) by Oracle Database.
|
RefCursor |
A REF CURSOR is a PL/SQL data type whose value is the memory address of a query work area on the database.
|
Single |
Single byte character sets.
|
TimeStamp |
Get the system date and time returned in a Timestamp datatype.
|
TimeStampLTZ |
Timestamp WITH LOCAL TIME ZONE is stored in the database time zone.
|
TimeStampTZ |
Get the system date and time accroding to the timezone returned in a Timestamp datatype.
|
Varchar2 |
The VARCHAR2 datatype stores variable-length character strings.
|
XmlType |
XMLType can be used like any other user-defined type.
|
Modifier and Type | Method | Description |
---|---|---|
static OracleCmdParamsType |
getOracleCmdParamsType(int value) |
retreives the enum constant of the specified value, if exists.
|
int |
getValue() |
Order is important in enums.By using getValue() method, each enum constant index can be found, just like array index.
|
static OracleCmdParamsType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static OracleCmdParamsType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OracleCmdParamsType BFile
public static final OracleCmdParamsType Blob
public static final OracleCmdParamsType Byte
public static final OracleCmdParamsType Char
public static final OracleCmdParamsType Clob
public static final OracleCmdParamsType Date
public static final OracleCmdParamsType Decimal
public static final OracleCmdParamsType Double
public static final OracleCmdParamsType Int16
public static final OracleCmdParamsType Int32
public static final OracleCmdParamsType Int64
public static final OracleCmdParamsType IntervalDS
public static final OracleCmdParamsType IntervalYM
public static final OracleCmdParamsType Long
public static final OracleCmdParamsType LongRaw
public static final OracleCmdParamsType NChar
public static final OracleCmdParamsType NClob
public static final OracleCmdParamsType NVarchar2
public static final OracleCmdParamsType Raw
public static final OracleCmdParamsType RefCursor
public static final OracleCmdParamsType Single
public static final OracleCmdParamsType TimeStamp
public static final OracleCmdParamsType TimeStampLTZ
public static final OracleCmdParamsType TimeStampTZ
public static final OracleCmdParamsType Varchar2
public static final OracleCmdParamsType XmlType
public static OracleCmdParamsType[] values()
for (OracleCmdParamsType c : OracleCmdParamsType.values()) System.out.println(c);
public static OracleCmdParamsType 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 nullpublic static OracleCmdParamsType getOracleCmdParamsType(int value) throws java.lang.IllegalArgumentException
value
- enum constant indexjava.lang.IllegalArgumentException
public int getValue()