public enum ParameterOption extends java.lang.Enum<ParameterOption>
DataSetParameter and
TableParameter as an optional parameter in the constructor.| Enum Constant and Description |
|---|
APPEND
Data is appended instead of being referenced or replaced.
|
BIND
The structure is bound (see
BIND mode). |
BY_REFERENCE
The structure is passed by reference (see
BY-REFERENCE mode). |
BY_VALUE
The structure is passed by value (see
BY-VALUE mode). |
NONE
No option specified.
|
| Modifier and Type | Method and Description |
|---|---|
static ParameterOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParameterOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterOption NONE
public static final ParameterOption APPEND
public static final ParameterOption BY_REFERENCE
BY-REFERENCE mode).public static final ParameterOption BIND
BIND mode).public static final ParameterOption BY_VALUE
BY-VALUE mode).public static ParameterOption[] values()
for (ParameterOption c : ParameterOption.values()) System.out.println(c);
public static ParameterOption 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