java.io.Serializable
, java.lang.Comparable<ICoverageNode.CounterEntity>
public static enum ICoverageNode.CounterEntity extends java.lang.Enum<ICoverageNode.CounterEntity>
Enum Constant | Description |
---|---|
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
|
Modifier and Type | Method | Description |
---|---|---|
static ICoverageNode.CounterEntity |
valueOf(java.lang.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 are declared.
|
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
public static ICoverageNode.CounterEntity[] values()
for (ICoverageNode.CounterEntity c : ICoverageNode.CounterEntity.values()) System.out.println(c);
public static ICoverageNode.CounterEntity 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 nullCopyright © 2018. All rights reserved.