public static enum EnvelopeStyle.Style extends Enum<EnvelopeStyle.Style>
Enum Constant and Description |
---|
SOAP11
SOAP1.1.
|
SOAP12
SOAP1.2.
|
XML
The raw XML.
|
Modifier and Type | Field and Description |
---|---|
String |
bindingId
The BindingID used by the BindingType annotation.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isSOAP11()
Checks if the style is SOAP 1.1.
|
boolean |
isSOAP12()
Checks if the style is SOAP 1.2.
|
boolean |
isXML()
Checks if the style is XML.
|
static EnvelopeStyle.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnvelopeStyle.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnvelopeStyle.Style SOAP11
public static final EnvelopeStyle.Style SOAP12
public static final EnvelopeStyle.Style XML
public final String bindingId
public static EnvelopeStyle.Style[] values()
for (EnvelopeStyle.Style c : EnvelopeStyle.Style.values()) System.out.println(c);
public static EnvelopeStyle.Style 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 boolean isSOAP11()
public boolean isSOAP12()
public boolean isXML()
Copyright © 2018 Oracle Corporation. All rights reserved.