public static enum Event.Timing extends Enum<Event.Timing>
| Modifier and Type | Method and Description |
|---|---|
static Event.Timing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Event.Timing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.Timing UNKNOWN
public static final Event.Timing ON_TIME
public static final Event.Timing TOO_LATE
public static Event.Timing[] values()
for (Event.Timing c : Event.Timing.values()) System.out.println(c);
public static Event.Timing 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 © 2019 OpenSource BIM. All rights reserved.