public static enum Parameter.Direction extends Enum<Parameter.Direction>
| Enum Constant and Description |
|---|
IN
input parameter
|
INOUT
this parameter is as well input as also output of the operator
|
OUT
output parameter
|
UNKNOWN
undefine direction, used for compatibility with oder Alida version.
|
| Modifier and Type | Method and Description |
|---|---|
static Parameter.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parameter.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parameter.Direction UNKNOWN
public static final Parameter.Direction IN
public static final Parameter.Direction OUT
public static final Parameter.Direction INOUT
public static Parameter.Direction[] values()
for (Parameter.Direction c : Parameter.Direction.values()) System.out.println(c);
public static Parameter.Direction 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 © 2010–2015 Martin Luther University Halle-Wittenberg. All rights reserved.