com.ibm.pim.webservice
Enum WebService.MessageStyle
java.lang.Object
java.lang.Enum<WebService.MessageStyle>
com.ibm.pim.webservice.WebService.MessageStyle
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<WebService.MessageStyle>
- Enclosing interface:
- WebService
public static enum WebService.MessageStyle
- extends java.lang.Enum<WebService.MessageStyle>
Enumeration listing the message styles which will be used to create
webservice.
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
RPC_ENCODED
public static final WebService.MessageStyle RPC_ENCODED
DOCUMENT_LITERAL
public static final WebService.MessageStyle DOCUMENT_LITERAL
values
public static final WebService.MessageStyle[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(WebService.MessageStyle c : WebService.MessageStyle.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static WebService.MessageStyle valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name