public enum EdtReplacementThread extends java.lang.Enum<EdtReplacementThread>
| Enum Constant and Description |
|---|
EDT
Mark code which works with UI as "to run on EDT"
|
EDT_WITH_IW
Mark code which works both with UI and with the IDE model as "to run on EDT with IW lock acquired"
|
WT
Mark code which works with the IDE model as "to run on Write Thread"
|
| Modifier and Type | Method and Description |
|---|---|
static EdtReplacementThread |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EdtReplacementThread[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdtReplacementThread EDT
public static final EdtReplacementThread WT
public static final EdtReplacementThread EDT_WITH_IW
public static EdtReplacementThread[] values()
for (EdtReplacementThread c : EdtReplacementThread.values()) System.out.println(c);
public static EdtReplacementThread 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