public static enum Status.UnitTests extends Enum<Status.UnitTests>
Enum Constant and Description |
---|
ABSENT
Absent.
|
COMPLETE
Complete.
|
NOT_APPLICABLE
Not Applicable.
|
PARTIAL
Partial.
|
Modifier and Type | Method and Description |
---|---|
static Status.UnitTests |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Status.UnitTests[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Status.UnitTests NOT_APPLICABLE
public static final Status.UnitTests ABSENT
public static final Status.UnitTests PARTIAL
public static final Status.UnitTests COMPLETE
public static Status.UnitTests[] values()
for (Status.UnitTests c : Status.UnitTests.values()) System.out.println(c);
public static Status.UnitTests 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 © 2008–2018. All rights reserved.