|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<BindingType>
org.codehaus.enunciate.contract.jaxws.BindingType
public enum BindingType
Enumeration of the supported binding types.
| Enum Constant Summary | |
|---|---|
HTTP
|
|
SOAP_1_1
|
|
SOAP_1_2
|
|
| Method Summary | |
|---|---|
static BindingType |
fromNamespace(java.lang.String namespace)
The binding type from a given namespace. |
java.lang.String |
getNamespace()
The namespace for this binding type. |
boolean |
isHttp()
Whether this binding type is HTTP. |
boolean |
isSoap11()
Whether this binding type is SOAP 1.1. |
boolean |
isSoap12()
Whether this binding type is SOAP 1.2. |
static BindingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BindingType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final BindingType SOAP_1_1
public static final BindingType SOAP_1_2
public static final BindingType HTTP
| Method Detail |
|---|
public static BindingType[] values()
for (BindingType c : BindingType.values()) System.out.println(c);
public static BindingType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is nullpublic java.lang.String getNamespace()
public boolean isSoap11()
public boolean isSoap12()
public boolean isHttp()
public static BindingType fromNamespace(java.lang.String namespace)
namespace - The namespace
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||