public class ParameterMode extends Object implements Serializable, IDLEntity
Modifier and Type | Field and Description |
---|---|
static int |
_PARAM_IN
This value means that the parameter is an IN parameter.
|
static int |
_PARAM_INOUT
This value means that the parameter is an INOUT parameter.
|
static int |
_PARAM_OUT
This value means that the parameter is an OUT parameter.
|
static ParameterMode |
PARAM_IN
This value means that the parameter is an IN parameter.
|
static ParameterMode |
PARAM_INOUT
This value means that the parameter is an INOUT parameter.
|
static ParameterMode |
PARAM_OUT
This value means that the parameter is an OUT parameter.
|
Modifier | Constructor and Description |
---|---|
protected |
ParameterMode(int a_value)
Create an instance of the parameter mode with the given value.
|
Modifier and Type | Method and Description |
---|---|
static ParameterMode |
from_int(int p_mode)
Get a parameter mode instance for the integer parameter mode code.
|
int |
value()
Return the integer value code for the given parameter mode.
|
public static final int _PARAM_IN
public static final int _PARAM_OUT
public static final int _PARAM_INOUT
public static final ParameterMode PARAM_IN
public static final ParameterMode PARAM_OUT
public static final ParameterMode PARAM_INOUT
protected ParameterMode(int a_value)
public int value()
public static ParameterMode from_int(int p_mode)
p_mode
- a parameter mode (0..2).BAD_PARAM
- for the invalid parameter mode code.