public enum IServiceType extends java.lang.Enum<IServiceType>
| Enum Constant and Description |
|---|
OctetBinary |
RestJson |
RestXml |
SoapXml |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static IServiceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IServiceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IServiceType OctetBinary
public static final IServiceType RestJson
public static final IServiceType RestXml
public static final IServiceType SoapXml
public static final IServiceType Unknown
public static IServiceType[] values()
for (IServiceType c : IServiceType.values()) System.out.println(c);
public static IServiceType 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 null