public enum EventMode extends Enum<EventMode>
| Enum Constant and Description |
|---|
ALL
Event mode: all.
|
FIRST
Event mode: first.
|
LAST
Event mode: last.
|
NONE
Event mode: none.
|
| Modifier and Type | Method and Description |
|---|---|
static EventMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventMode FIRST
public static final EventMode ALL
public static final EventMode LAST
public static final EventMode NONE
public static EventMode[] values()
for (EventMode c : EventMode.values()) System.out.println(c);
public static EventMode 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 © 2016–2018 Softelnet. All rights reserved.