public enum SOAPVersion extends Enum<SOAPVersion>
Enum Constant and Description |
---|
SOAP_1_1
SOAP 1.1.
|
SOAP_1_2
SOAP 1.2.
|
Modifier and Type | Method and Description |
---|---|
static SOAPVersion |
valueOf(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 SOAP_1_1
public static final SOAPVersion SOAP_1_2
public static SOAPVersion[] values()
for (SOAPVersion c : SOAPVersion.values()) System.out.println(c);
public static SOAPVersion 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 © 1999–2018 Shibboleth Consortium. All rights reserved.