|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<OnlyRunBy.EVENT_THREAD>
edu.rice.cs.cunit.threadCheck.OnlyRunBy.EVENT_THREAD
public static enum OnlyRunBy.EVENT_THREAD
Describes selection of the event thread.
Enum Constant Summary | |
---|---|
NO
Event thread not selected. |
|
ONLY
Only event thread may run (for use inside @OnlyRunBy). |
|
ONLY_AFTER_REALIZED
Only event thread may run after a component has been realized (for use with @OnlyRunBy). |
Method Summary | |
---|---|
static OnlyRunBy.EVENT_THREAD |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static OnlyRunBy.EVENT_THREAD[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final OnlyRunBy.EVENT_THREAD NO
public static final OnlyRunBy.EVENT_THREAD ONLY_AFTER_REALIZED
public static final OnlyRunBy.EVENT_THREAD ONLY
Method Detail |
---|
public static OnlyRunBy.EVENT_THREAD[] values()
for (OnlyRunBy.EVENT_THREAD c : OnlyRunBy.EVENT_THREAD.values()) System.out.println(c);
public static OnlyRunBy.EVENT_THREAD 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |