public static enum TimeUtilities.TimerFormat extends java.lang.Enum<TimeUtilities.TimerFormat>
| Enum Constant and Description |
|---|
DD_HH_MM |
HH_MM_SS |
HH_MM_SS_000 |
MM_SS_0 |
MM_SS_000 |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toFormatString() |
static TimeUtilities.TimerFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TimeUtilities.TimerFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeUtilities.TimerFormat UNDEFINED
public static final TimeUtilities.TimerFormat HH_MM_SS
public static final TimeUtilities.TimerFormat MM_SS_000
public static final TimeUtilities.TimerFormat MM_SS_0
public static final TimeUtilities.TimerFormat HH_MM_SS_000
public static final TimeUtilities.TimerFormat DD_HH_MM
public static TimeUtilities.TimerFormat[] values()
for (TimeUtilities.TimerFormat c : TimeUtilities.TimerFormat.values()) System.out.println(c);
public static TimeUtilities.TimerFormat 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 nullpublic java.lang.String toFormatString()