public enum IOMode extends Enum<IOMode>
Enum Constant and Description |
---|
IN
The parameter is an input parameter.
|
INOUT
The parameter is an input and output parameter.
|
OUT
The parameter is an output parameter.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Returns the integer value of this enumeration literal.
|
static IOMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IOMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IOMode IN
public static final IOMode OUT
public static final IOMode INOUT
public static IOMode[] values()
for (IOMode c : IOMode.values()) System.out.println(c);
public static IOMode 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 nullpublic int getValue()
Copyright © 2016 Open Grid Forum. All rights reserved.