public static enum ThreadService.ThreadContext extends Enum<ThreadService.ThreadContext>
| Enum Constant and Description | 
|---|
| 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. | 
| 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–2022 SciJava. All rights reserved.