public static enum EventQueue.EventInsertionType extends Enum<EventQueue.EventInsertionType>
Modifier and Type | Method and Description |
---|---|
static EventQueue.EventInsertionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventQueue.EventInsertionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventQueue.EventInsertionType PREPEND
public static final EventQueue.EventInsertionType APPEND
public static final EventQueue.EventInsertionType DEFERRED
public static EventQueue.EventInsertionType[] values()
for (EventQueue.EventInsertionType c : EventQueue.EventInsertionType.values()) System.out.println(c);
public static EventQueue.EventInsertionType 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 null