|
Oracle® WebCenter Content Remote Intradoc Client (RIDC) Java API Reference 11g Release 1 (11.1) E17274-03 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Object
java.lang.Enum<DataResultSet.Field.Type>
oracle.stellent.ridc.model.DataResultSet.Field.Type
public static enum DataResultSet.Field.Type
All available types of field. Using hard constants to simplify coding. DO NOT change the order of the fields in the enum, as it mirrors the order in the FieldInfo in CS.
| Enum Constant Summary | |
|---|---|
BINARYVariable length binary data. |
|
BLOBVariable length Binary locator object. |
|
BOOLEANField holds true or false. |
|
CHARField holds a single character. |
|
CLOBVariable length Character locator object. |
|
DATEField holds a date. |
|
DECIMALField holds a decimal number. |
|
FLOATField holds a floating point number (The Java 'double' type is used to hold these values). |
|
INTField holds an integer. |
|
MEMOVariable length Unicode string for memo field. |
|
STRINGField holds a Unicode string (although the source of the string may not be Unicode). |
|
| Method Summary | |
|---|---|
static DataResultSet.Field.Type |
getTypeFromOrdinal(int i)This returns the Type given the ordinal value in the enum. |
static DataResultSet.Field.Type |
valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. |
static DataResultSet.Field.Type[] |
values()Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final DataResultSet.Field.Type BOOLEAN
public static final DataResultSet.Field.Type CHAR
public static final DataResultSet.Field.Type INT
public static final DataResultSet.Field.Type FLOAT
public static final DataResultSet.Field.Type DATE
public static final DataResultSet.Field.Type STRING
public static final DataResultSet.Field.Type BINARY
public static final DataResultSet.Field.Type MEMO
public static final DataResultSet.Field.Type BLOB
public static final DataResultSet.Field.Type CLOB
public static final DataResultSet.Field.Type DECIMAL
| Method Detail |
|---|
public static DataResultSet.Field.Type[] values()
for (DataResultSet.Field.Type c : DataResultSet.Field.Type.values())
System.out.println(c);
public static DataResultSet.Field.Type 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 DataResultSet.Field.Type getTypeFromOrdinal(int i)
|
Oracle® WebCenter Content Remote Intradoc Client (RIDC) Java API Reference 11g Release 1 (11.1) E17274-03 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||