public static enum TestTimesInterface.TimeUnits extends java.lang.Enum<TestTimesInterface.TimeUnits>
TestTimesInterface.getLastTestTime(), TestTimesInterface.getTestTimes(), and
TestTimesInterface.getAverageTestTime().
TestTimesInterface.getTimeUnits() and TestTimesInterface.setTimeUnits(TimeUnits timeUnits).| Enum Constant and Description |
|---|
MicroSeconds |
MilliSeconds |
NanoSeconds |
Seconds |
| Modifier and Type | Method and Description |
|---|---|
static TestTimesInterface.TimeUnits |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TestTimesInterface.TimeUnits[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestTimesInterface.TimeUnits Seconds
public static final TestTimesInterface.TimeUnits MilliSeconds
public static final TestTimesInterface.TimeUnits MicroSeconds
public static final TestTimesInterface.TimeUnits NanoSeconds
public static TestTimesInterface.TimeUnits[] values()
for (TestTimesInterface.TimeUnits c : TestTimesInterface.TimeUnits.values()) System.out.println(c);
public static TestTimesInterface.TimeUnits 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 null