Enum Class ProtocolBinding

java.lang.Object
java.lang.Enum<ProtocolBinding>
org.opengis.cite.iso19142.ProtocolBinding
All Implemented Interfaces:
Serializable, Comparable<ProtocolBinding>, Constable

public enum ProtocolBinding extends Enum<ProtocolBinding>
An enumerated type that indicates how a request message is bound to an application protocol. In effect, a binding prescribes how the message content is mapped into a concrete exchange format. The WFS v2 specification defines three conformance classes pertaining to protocol bindings; a conforming service must implement at least one of these and advertise all supported bindings in the service capabilities document.
  • HTTP GET (constraint name: 'KVPEncoding')
  • HTTP POST (constraint name : 'XMLEncoding')
  • SOAP (constraint name: 'SOAPEncoding')
See Also:
  • Enum Constant Details

  • Method Details

    • values

      public static ProtocolBinding[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ProtocolBinding valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getConstraintName

      public String getConstraintName()