public enum SoapType extends Enum<SoapType>
| Enum Constant and Description |
|---|
_boolean
Enumeration : _boolean
|
_double
Enumeration : _double
|
_int
Enumeration : _int
|
address
Enumeration : address
|
anyType
Enumeration : anyType
|
base64Binary
Enumeration : base64Binary
|
date
Enumeration : date
|
dateTime
Enumeration : dateTime
|
ID
Enumeration : ID
|
location
Enumeration : location
|
string
Enumeration : string
|
time
Enumeration : time
|
| Modifier and Type | Field and Description |
|---|---|
static Map<String,String> |
valuesToEnums |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
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.
|
public static final SoapType ID
public static final SoapType base64Binary
public static final SoapType _boolean
public static final SoapType _double
public static final SoapType _int
public static final SoapType string
public static final SoapType date
public static final SoapType dateTime
public static final SoapType time
public static final SoapType location
public static final SoapType address
public static final SoapType anyType
public static SoapType[] values()
for (SoapType c : SoapType.values()) System.out.println(c);
public static SoapType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015. All Rights Reserved.