public static enum ICoverageNode.CounterEntity extends Enum<ICoverageNode.CounterEntity>
Enum Constant and 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 and Description |
---|---|
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 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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2022. All rights reserved.