| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<ThreadService.ThreadContext>
org.scijava.thread.ThreadService.ThreadContext
public static enum ThreadService.ThreadContext
| Enum Constant Summary | |
|---|---|
| NONEThe thread was not spawned via a SciJava thread service, and its Contextis unknown or inapplicable. | |
| OTHERThe thread was spawned by a SciJava thread service, but not this one; i.e., it belongs to a different Context. | |
| SAMEThe thread was spawned by this thread service; i.e., it belongs to the same Context. | |
| Method Summary | |
|---|---|
| static ThreadService.ThreadContext | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ThreadService.ThreadContext[] | 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 ThreadService.ThreadContext SAME
Context.
public static final ThreadService.ThreadContext OTHER
Context.
public static final ThreadService.ThreadContext NONE
Context is unknown or inapplicable.
| Method Detail | 
|---|
public static ThreadService.ThreadContext[] values()
for (ThreadService.ThreadContext c : ThreadService.ThreadContext.values()) System.out.println(c);
public static ThreadService.ThreadContext valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||