public enum SoapVersion extends java.lang.Enum<SoapVersion>
| Modifier and Type | Method and Description |
|---|---|
static SoapVersion |
forName(java.lang.String inName) |
java.lang.String |
getContentType() |
java.lang.String |
getNamespace() |
java.lang.String |
toString() |
static SoapVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SoapVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SoapVersion v1_1
public static final SoapVersion v1_2
public static SoapVersion[] values()
for (SoapVersion c : SoapVersion.values()) System.out.println(c);
public static SoapVersion valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<SoapVersion>public java.lang.String getNamespace()
public java.lang.String getContentType()
public static SoapVersion forName(java.lang.String inName)