|
Oracle® Data Integrator Java API Reference 11g Release 1 (11.1.1.6.0) E17060-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<ProcedureOption.OptionType>
oracle.odi.domain.project.ProcedureOption.OptionType
public static enum ProcedureOption.OptionType
ProcedureOption locally defines the Enum OptionType which represents the types a ProcedureOption can have.
CHECKBOX stands for Boolean parameters
SHORT_TEXT stands for short Alphanumeric (String <= 250 chars) parameters
LONG_TEXT stands for long Alphanumeric (String > 250 chars) parameters with text cross reference support
| Enum Constant Summary | |
|---|---|
CHECKBOXCheckbox (Boolean). |
|
LONG_TEXTLong text. |
|
SHORT_TEXTShort text. |
|
| Method Summary | |
|---|---|
static ProcedureOption.OptionType |
valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. |
static ProcedureOption.OptionType[] |
values()Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, 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 ProcedureOption.OptionType SHORT_TEXT
public static final ProcedureOption.OptionType LONG_TEXT
public static final ProcedureOption.OptionType CHECKBOX
| Method Detail |
|---|
public static ProcedureOption.OptionType[] values()
for (ProcedureOption.OptionType c : ProcedureOption.OptionType.values())
System.out.println(c);
public static ProcedureOption.OptionType 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 null
|
Oracle® Data Integrator Java API Reference 11g Release 1 (11.1.1.6.0) E17060-03 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||