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