public enum ELineCoverage extends java.lang.Enum<ELineCoverage>
Enum Constant and Description |
---|
FULLY_COVERED
The line was fully covered
|
NOT_COVERED
The line was not covered at all
|
PARTIALLY_COVERED
The line was partially covered
|
Modifier and Type | Method and Description |
---|---|
java.util.List<java.lang.Integer> |
getRelevantLines(LineCoverageInfo lineCoverageInfo)
Returns the relevant lines that are covered with this
ELineCoverage
type |
static ELineCoverage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ELineCoverage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ELineCoverage NOT_COVERED
public static final ELineCoverage PARTIALLY_COVERED
public static final ELineCoverage FULLY_COVERED
public static ELineCoverage[] values()
for (ELineCoverage c : ELineCoverage.values()) System.out.println(c);
public static ELineCoverage 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 nullpublic java.util.List<java.lang.Integer> getRelevantLines(LineCoverageInfo lineCoverageInfo)
ELineCoverage
type