Enum EnvelopeStyle.Style

java.lang.Object
java.lang.Enum<EnvelopeStyle.Style>
com.oracle.webservices.api.EnvelopeStyle.Style
All Implemented Interfaces:
Serializable, Comparable<EnvelopeStyle.Style>
Enclosing class:
EnvelopeStyle

public static enum EnvelopeStyle.Style extends Enum<EnvelopeStyle.Style>
  • Enum Constant Details

    • SOAP11

      public static final EnvelopeStyle.Style SOAP11
      SOAP1.1. For JAX-WS, this is mapped from: jakarta.xml.ws.soap.SOAPBinding.SOAP11HTTP_BINDING
    • SOAP12

      public static final EnvelopeStyle.Style SOAP12
      SOAP1.2. For JAX-WS, this is mapped from: jakarta.xml.ws.soap.SOAPBinding.SOAP12HTTP_BINDING
    • XML

      public static final EnvelopeStyle.Style XML
      The raw XML. For JAX-WS, this is mapped from: jakarta.xml.ws.http.HTTPBinding.HTTP_BINDING
  • Field Details

    • bindingId

      public final String bindingId
      The BindingID used by the BindingType annotation.
  • Method Details

    • values

      public static EnvelopeStyle.Style[] 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

      public static EnvelopeStyle.Style valueOf(String name)
      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 name
      NullPointerException - 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.