public enum ServiceType extends Enum<ServiceType>
| Enum Constant and Description |
|---|
PURGE_INDICATORS |
| Modifier and Type | Method and Description |
|---|---|
static ServiceType |
parse(String serviceType)
Returns
ServiceType from the serviceType. |
static ServiceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceType PURGE_INDICATORS
public static ServiceType[] values()
for (ServiceType c : ServiceType.values()) System.out.println(c);
public static ServiceType 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 static ServiceType parse(String serviceType)
ServiceType from the serviceType.