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