public enum ProtocolBinding extends Enum<ProtocolBinding>
| Enum Constant and Description |
|---|
ANY
Any supported binding
|
GET
HTTP GET method
|
POST
HTTP POST method
|
SOAP
SOAP HTTP binding
|
| Modifier and Type | Method and Description |
|---|---|
String |
getConstraintName() |
static ProtocolBinding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProtocolBinding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProtocolBinding GET
public static final ProtocolBinding POST
public static final ProtocolBinding SOAP
public static final ProtocolBinding ANY
public static ProtocolBinding[] values()
for (ProtocolBinding c : ProtocolBinding.values()) System.out.println(c);
public static ProtocolBinding 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 String getConstraintName()
Copyright © 2020 Open Geospatial Consortium. All rights reserved.