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