public enum SoapProtocol extends Enum<SoapProtocol>
| Enum Constant and Description |
|---|
SOAP_1_1
Soap 1.1 protocol.
|
SOAP_1_2
Soap 1.2 protocol.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SoapProtocol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SoapProtocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SoapProtocol SOAP_1_1
public static final SoapProtocol SOAP_1_2
public static SoapProtocol[] values()
for (SoapProtocol c : SoapProtocol.values()) System.out.println(c);
public static SoapProtocol 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 nullpublic String toString()
toString in class Enum<SoapProtocol>Copyright © 2017–2018 Wasiq Bhamla. All rights reserved.