public static enum ThreadService.ThreadContext extends Enum<ThreadService.ThreadContext>
| Enum Constant and Description |
|---|
NONE
The thread was not spawned via a SciJava thread service, and its
Context is unknown or inapplicable. |
OTHER
The thread was spawned by a SciJava thread service, but not this one;
i.e., it belongs to a different
Context. |
SAME
The thread was spawned by this thread service; i.e., it belongs to the
same
Context. |
| Modifier and Type | Method and Description |
|---|---|
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.
|
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.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 nameNullPointerException - if the argument is nullCopyright © 2009–2015 SciJava. All rights reserved.