public static enum ICounter.CounterValue extends Enum<ICounter.CounterValue>
Enum Constant and 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 and Description |
---|---|
static ICounter.CounterValue |
valueOf(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(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 © 2009–2016 Mountainminds GmbH& Co. KG. All rights reserved.