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