java.io.Serializable
, java.lang.Comparable<ICounter.CounterValue>
public static enum ICounter.CounterValue extends java.lang.Enum<ICounter.CounterValue>
Enum Constant | Description |
---|---|
COVEREDCOUNT |
Number of covered items
|
COVEREDRATIO |
Ratio of covered to total items
|
MISSEDCOUNT |
Number of missed items
|
MISSEDRATIO |
Ratio of missed to total items
|
TOTALCOUNT |
Total number of items
|
Modifier and Type | Method | Description |
---|---|---|
static ICounter.CounterValue |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ICounter.CounterValue[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ICounter.CounterValue TOTALCOUNT
public static final ICounter.CounterValue MISSEDCOUNT
public static final ICounter.CounterValue COVEREDCOUNT
public static final ICounter.CounterValue MISSEDRATIO
public static final ICounter.CounterValue COVEREDRATIO
public static ICounter.CounterValue[] values()
for (ICounter.CounterValue c : ICounter.CounterValue.values()) System.out.println(c);
public static ICounter.CounterValue 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.