public enum SoapBodyStyle extends Enum<SoapBodyStyle>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 nameNullPointerException
- if the argument is nullpublic boolean isDocument()
public boolean isRpc()
public boolean isLiteral()
public boolean isBare()
public boolean isDocumentWrapper()
Copyright (c) 1997-2012 Oracle and/or its affiliates. All rights reserved.