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