public enum BindingStyle extends java.lang.Enum<BindingStyle>
Enum Constant and Description |
---|
DOCUMENT_ENCODED |
DOCUMENT_LITERAL |
DOCUMENT_LITERAL_WRAPPED |
RPC_ENCODED |
RPC_LITERAL |
Modifier and Type | Method and Description |
---|---|
static BindingStyle |
getBindingStyle(java.lang.String style,
java.lang.String use) |
boolean |
isDocument() |
boolean |
isEncoded() |
boolean |
isLiteral() |
boolean |
isRpc() |
boolean |
isWrapped() |
static BindingStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BindingStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindingStyle RPC_LITERAL
public static final BindingStyle RPC_ENCODED
public static final BindingStyle DOCUMENT_LITERAL
public static final BindingStyle DOCUMENT_ENCODED
public static final BindingStyle DOCUMENT_LITERAL_WRAPPED
public static BindingStyle[] values()
for (BindingStyle c : BindingStyle.values()) System.out.println(c);
public static BindingStyle 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 namejava.lang.NullPointerException
- if the argument is nullpublic boolean isRpc()
public boolean isDocument()
public boolean isEncoded()
public boolean isLiteral()
public boolean isWrapped()
public static BindingStyle getBindingStyle(java.lang.String style, java.lang.String use)