|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SoapBodyStyle>
com.sun.xml.ws.api.databinding.SoapBodyStyle
public enum SoapBodyStyle
The SoapBodyStyle represents the possible choices of the mapping styles between the SOAP body of a wsdl:operation input/output messages and JAVA method parameters and return/output values.
Enum Constant Summary | |
---|---|
DocumentBare
Bare style mapping of a document style with literal use wsdl:operation |
|
DocumentWrapper
Wrapper style mapping of a document style with literal use wsdl:operation |
|
RpcEncoded
The mapping style of a RPC style with encoded use wsdl:operation. |
|
RpcLiteral
The mapping style of a RPC style with literal use wsdl:operation |
|
Unspecificed
The mapping style is not specified. |
Method Summary | |
---|---|
boolean |
isBare()
|
boolean |
isDocument()
|
boolean |
isDocumentWrapper()
|
boolean |
isLiteral()
|
boolean |
isRpc()
|
static SoapBodyStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SoapBodyStyle[] |
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 SoapBodyStyle DocumentBare
public static final SoapBodyStyle DocumentWrapper
public static final SoapBodyStyle RpcLiteral
public static final SoapBodyStyle RpcEncoded
public static final SoapBodyStyle Unspecificed
Method Detail |
---|
public static SoapBodyStyle[] values()
for (SoapBodyStyle c : SoapBodyStyle.values()) System.out.println(c);
public static SoapBodyStyle valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic boolean isDocument()
public boolean isRpc()
public boolean isLiteral()
public boolean isBare()
public boolean isDocumentWrapper()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |