public enum ParamMode extends Enum<ParamMode>
Param
.Enum Constant and Description |
---|
IN
An
IN parameter. |
INOUT
An
IN OUT parameter. |
OUT
An
OUT parameter. |
Modifier and Type | Method and Description |
---|---|
static ParamMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParamMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParamMode IN
IN
parameter.
This is the default parameter mode if no explicit mode was specified.
public static final ParamMode OUT
OUT
parameter.public static final ParamMode INOUT
IN OUT
parameter.public static ParamMode[] values()
for (ParamMode c : ParamMode.values()) System.out.println(c);
public static ParamMode 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 nullCopyright © 2019. All rights reserved.