June 2003
Intermediate to advanced
672 pages
23h 48m
English
ParameterMode
public class ParameterMode {
// No Constructor
// Public Constants
public static final ParameterMode IN;
public static final ParameterMode INOUT;
public static final ParameterMode OUT;
// Public Methods Overriding Object
public String toString( );
}The ParameterMode class provides symbolic
constants that are used to specify whether a JAX-RPC method parameter
is input-only (i.e., set before the call and not modified),
output-only (undefined before the call, and modified as a result of
the call), or both input and output. These constants are used in
conjunction with the addParameter( ) methods of
the javax.xml.rpc.Call when building a method call
using the DII. See the description of the Call
interface, earlier in this chapter, for further information.
Call.addParameter( )
ParameterMode.{IN, INOUT,
OUT}
Read now
Unlock full access