public static enum Flags.ClockType extends java.lang.Enum<Flags.ClockType>
Enum Constant and Description |
---|
EVENT_TIME |
SYSTEM_TIME |
WORKED_TIME |
Modifier and Type | Method and Description |
---|---|
static Flags.ClockType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Flags.ClockType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Flags.ClockType SYSTEM_TIME
public static final Flags.ClockType WORKED_TIME
public static final Flags.ClockType EVENT_TIME
public static Flags.ClockType[] values()
for (Flags.ClockType c : Flags.ClockType.values()) System.out.println(c);
public static Flags.ClockType 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