public static enum MParameter.Direction extends java.lang.Enum<MParameter.Direction>
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
str |
Modifier and Type | Method and Description |
---|---|
static MParameter.Direction |
getDirection(java.lang.String name) |
java.lang.String |
getString()
Get the string representation.
|
static MParameter.Direction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MParameter.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MParameter.Direction IN
public static final MParameter.Direction OUT
public static final MParameter.Direction INOUT
public static final MParameter.Direction FIXED
public static MParameter.Direction[] values()
for (MParameter.Direction c : MParameter.Direction.values()) System.out.println(c);
public static MParameter.Direction 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 nullpublic java.lang.String getString()
public static MParameter.Direction getDirection(java.lang.String name)