public enum ServiceType extends Enum<ServiceType>
| Enum Constant and Description |
|---|
CREATE_ADMINISTERED_ITEMS |
DELETE_ADMINISTERED_ITEM |
EXPORT_EXCEL |
EXPORT_PDF |
IMPORT_EXCEL |
METADATA_CREATION |
REFRESH_ADMINISTERED_ITEM |
VALIDATE_ADMINISTERED_ITEM |
| 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 CREATE_ADMINISTERED_ITEMS
public static final ServiceType DELETE_ADMINISTERED_ITEM
public static final ServiceType EXPORT_EXCEL
public static final ServiceType EXPORT_PDF
public static final ServiceType IMPORT_EXCEL
public static final ServiceType METADATA_CREATION
public static final ServiceType REFRESH_ADMINISTERED_ITEM
public static final ServiceType VALIDATE_ADMINISTERED_ITEM
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.