|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ICoverageNode.CounterEntity> org.jacoco.core.analysis.ICoverageNode.CounterEntity
public static enum ICoverageNode.CounterEntity
Different counter types supported by JaCoCo.
Enum Constant Summary | |
---|---|
BRANCH
Counter for branches |
|
CLASS
Counter for classes |
|
COMPLEXITY
Counter for cyclomatic complexity |
|
INSTRUCTION
Counter for instructions |
|
LINE
Counter for source lines |
|
METHOD
Counter for methods |
Method Summary | |
---|---|
static ICoverageNode.CounterEntity |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ICoverageNode.CounterEntity[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ICoverageNode.CounterEntity INSTRUCTION
public static final ICoverageNode.CounterEntity BRANCH
public static final ICoverageNode.CounterEntity LINE
public static final ICoverageNode.CounterEntity COMPLEXITY
public static final ICoverageNode.CounterEntity METHOD
public static final ICoverageNode.CounterEntity CLASS
Method Detail |
---|
public static final ICoverageNode.CounterEntity[] values()
for(ICoverageNode.CounterEntity c : ICoverageNode.CounterEntity.values()) System.out.println(c);
public static ICoverageNode.CounterEntity valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |