com.sforce.soap.partner
Enum SoapType

java.lang.Object
  extended by java.lang.Enum<SoapType>
      extended by com.sforce.soap.partner.SoapType
All Implemented Interfaces:
Serializable, Comparable<SoapType>

public enum SoapType
extends Enum<SoapType>

Generated enum, please do not edit.


Enum Constant Summary
_boolean
          Enumeration : _boolean
_double
          Enumeration : _double
_int
          Enumeration : _int
anyType
          Enumeration : anyType
base64Binary
          Enumeration : base64Binary
date
          Enumeration : date
dateTime
          Enumeration : dateTime
ID
          Enumeration : ID
string
          Enumeration : string
time
          Enumeration : time
 
Method Summary
static SoapType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SoapType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ID

public static final SoapType ID
Enumeration : ID


base64Binary

public static final SoapType base64Binary
Enumeration : base64Binary


_boolean

public static final SoapType _boolean
Enumeration : _boolean


_double

public static final SoapType _double
Enumeration : _double


_int

public static final SoapType _int
Enumeration : _int


string

public static final SoapType string
Enumeration : string


date

public static final SoapType date
Enumeration : date


dateTime

public static final SoapType dateTime
Enumeration : dateTime


time

public static final SoapType time
Enumeration : time


anyType

public static final SoapType anyType
Enumeration : anyType

Method Detail

values

public static SoapType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SoapType c : SoapType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SoapType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2012. All Rights Reserved.