@Namespace(value="op") public static enum openpose.ThreadManagerMode extends Enum<openpose.ThreadManagerMode>
| Enum Constant and Description |
|---|
Asynchronous
First and last queues of ThreadManager will be given to the user, so he must push elements to the first queue and retrieve
them from the last one after being processed.
|
AsynchronousIn
Similar to Asynchronous, but only the input (first) queue is given to the user.
|
AsynchronousOut
Similar to Asynchronous, but only the output (last) queue is given to the user.
|
Synchronous
Everything will run inside the ThreadManager.
|
| Modifier and Type | Field and Description |
|---|---|
byte |
value |
| Modifier and Type | Method and Description |
|---|---|
openpose.ThreadManagerMode |
intern() |
String |
toString() |
static openpose.ThreadManagerMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static openpose.ThreadManagerMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final openpose.ThreadManagerMode Asynchronous
public static final openpose.ThreadManagerMode AsynchronousIn
public static final openpose.ThreadManagerMode AsynchronousOut
public static final openpose.ThreadManagerMode Synchronous
public static openpose.ThreadManagerMode[] values()
for (openpose.ThreadManagerMode c : openpose.ThreadManagerMode.values()) System.out.println(c);
public static openpose.ThreadManagerMode 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 nullpublic openpose.ThreadManagerMode intern()
public String toString()
toString in class Enum<openpose.ThreadManagerMode>Copyright © 2022. All rights reserved.