public static enum TimeProfiler.TimeBase extends Enum<TimeProfiler.TimeBase>
Enum Constant and Description |
---|
MS
Millisecond.
|
NS
Nanosecond.
|
S
Second.
|
Modifier and Type | Method and Description |
---|---|
static TimeProfiler.TimeBase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeProfiler.TimeBase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeProfiler.TimeBase MS
public static final TimeProfiler.TimeBase NS
public static final TimeProfiler.TimeBase S
public static TimeProfiler.TimeBase 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 nullpublic static TimeProfiler.TimeBase[] values()
for (TimeProfiler.TimeBase c : TimeProfiler.TimeBase.values()) System.out.println(c);