Package com.oracle.webservices.api
Enum EnvelopeStyle.Style
- All Implemented Interfaces:
Serializable,Comparable<EnvelopeStyle.Style>
- Enclosing class:
- EnvelopeStyle
-
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionbooleanisSOAP11()Checks if the style is SOAP 1.1.booleanisSOAP12()Checks if the style is SOAP 1.2.booleanisXML()Checks if the style is XML.static EnvelopeStyle.StyleReturns 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.
-
Enum Constant Details
-
SOAP11
SOAP1.1. For JAX-WS, this is mapped from: jakarta.xml.ws.soap.SOAPBinding.SOAP11HTTP_BINDING -
SOAP12
SOAP1.2. For JAX-WS, this is mapped from: jakarta.xml.ws.soap.SOAPBinding.SOAP12HTTP_BINDING -
XML
The raw XML. For JAX-WS, this is mapped from: jakarta.xml.ws.http.HTTPBinding.HTTP_BINDING
-
-
Field Details
-
bindingId
The BindingID used by the BindingType annotation.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
isSOAP11
public boolean isSOAP11()Checks if the style is SOAP 1.1.- Returns:
- true if the style is SOAP 1.1.
-
isSOAP12
public boolean isSOAP12()Checks if the style is SOAP 1.2.- Returns:
- true if the style is SOAP 1.2.
-
isXML
public boolean isXML()Checks if the style is XML.- Returns:
- true if the style is XML.
-