public static enum ProcedureParameter.Type extends Enum<ProcedureParameter.Type>
Enum Constant and Description |
---|
In |
InOut |
Out |
ReturnValue |
Modifier and Type | Method and Description |
---|---|
static ProcedureParameter.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcedureParameter.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcedureParameter.Type In
public static final ProcedureParameter.Type InOut
public static final ProcedureParameter.Type Out
public static final ProcedureParameter.Type ReturnValue
public static ProcedureParameter.Type[] values()
for (ProcedureParameter.Type c : ProcedureParameter.Type.values()) System.out.println(c);
public static ProcedureParameter.Type 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 © 2018 JBoss by Red Hat. All rights reserved.