FileDocCategorySizeDatePackage
Type.javaAPI DocphoneME MR2 API (J2ME)3306Wed May 02 18:00:34 BST 2007javax.microedition.xml.rpc

Type

public class Type extends Object
The class Type is a type safe enumeration of allowable types that are used to identify simple types defined in a Web Service's WSDL definition. The set of simple types are:
  • boolean
  • byte
  • short
  • int
  • long
  • float
  • double
  • string
version
0.1
see
javax.xml.rpc.Stub
see
javax.microedition.xml.rpc.Operation

Fields Summary
public static final Type
BOOLEAN
Type constant identifying boolean parameters. Given the integer value '0'.
public static final Type
BYTE
Type constant identifying byte parameters. Given the integer value '1'.
public static final Type
SHORT
Type constant identifying short parameters. Given the integer value '2'.
public static final Type
INT
Type constant identifying integer parameters. Given the integer value '3'.
public static final Type
LONG
Type constant identifying long parameters. Given the integer value '4'.
public static final Type
FLOAT
Type constant identifying float parameters. Given the integer value '5'.
public static final Type
DOUBLE
Type constant identifying double parameters. Given the integer value '6'.
public static final Type
STRING
Type constant identifying String parameters. Given the integer value '7'.
public final int
value
The internal integer "value" of this Type, [0-8]
Constructors Summary
Type(int value)
Package-private constructor.

param
value the integer id for this Type object.


                    
      
        this.value = value;
    
Methods Summary