public enum ServiceParameters extends Enum<ServiceParameters>
| Enum Constant and Description |
|---|
EPR_LIST |
INFRA |
RANDOMSTRING |
SERVICE |
USERNAME |
| Modifier and Type | Method and Description |
|---|---|
static ServiceParameters |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceParameters[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceParameters EPR_LIST
public static final ServiceParameters INFRA
public static final ServiceParameters SERVICE
public static final ServiceParameters USERNAME
public static final ServiceParameters RANDOMSTRING
public static ServiceParameters[] values()
for (ServiceParameters c : ServiceParameters.values()) System.out.println(c);
public static ServiceParameters 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 nullCopyright © 2022. All Rights Reserved.