public static enum DatasetEventManager.FireMode extends java.lang.Enum<DatasetEventManager.FireMode>
Enum Constant and Description |
---|
IMMEDIATELY
Fire in calling thread immediately.
|
IN_EDT
Fire in event dispatch thread.
|
IN_EDT_CONSOLIDATED
Fire in event dispatch thread.
|
Modifier and Type | Method and Description |
---|---|
static DatasetEventManager.FireMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DatasetEventManager.FireMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatasetEventManager.FireMode IMMEDIATELY
public static final DatasetEventManager.FireMode IN_EDT
public static final DatasetEventManager.FireMode IN_EDT_CONSOLIDATED
public static DatasetEventManager.FireMode[] values()
for (DatasetEventManager.FireMode c : DatasetEventManager.FireMode.values()) System.out.println(c);
public static DatasetEventManager.FireMode 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