Package javax.xml.rpc
Class ParameterMode
- java.lang.Object
-
- javax.xml.rpc.ParameterMode
-
public class ParameterMode extends java.lang.Object
Thejavax.xml.rpc.ParameterMode
is a type-safe enumeration for parameter mode. This class is used in theCall
API to specify parameter passing modes.- Version:
- $Rev: 467553 $ $Date: 2006-10-25 00:01:51 -0400 (Wed, 25 Oct 2006) $
-
-
Field Summary
Fields Modifier and Type Field Description static ParameterMode
IN
The mode is 'IN'.static ParameterMode
INOUT
The mode is 'INOUT'.private java.lang.String
mode
Mode name.static ParameterMode
OUT
The mode is 'OUT'.
-
Constructor Summary
Constructors Modifier Constructor Description private
ParameterMode(java.lang.String mode)
Make a new mode.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
mode
private final java.lang.String mode
Mode name.
-
IN
public static final ParameterMode IN
The mode is 'IN'.
-
INOUT
public static final ParameterMode INOUT
The mode is 'INOUT'.
-
OUT
public static final ParameterMode OUT
The mode is 'OUT'.
-
-