public enum WorkflowRunMode extends Enum<WorkflowRunMode>
| Enum Constant and Description |
|---|
ASYNCHRONOUS
Asynchronous operation.
|
STREAMING
Streaming operation.
|
SYNCHRONOUS
Synchronous operation.
|
| Modifier and Type | Method and Description |
|---|---|
static WorkflowRunMode |
fromValue(int value) |
int |
getValue() |
static WorkflowRunMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowRunMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowRunMode SYNCHRONOUS
public static final WorkflowRunMode STREAMING
public static final WorkflowRunMode ASYNCHRONOUS
public static WorkflowRunMode[] values()
for (WorkflowRunMode c : WorkflowRunMode.values()) System.out.println(c);
public static WorkflowRunMode 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 int getValue()
public static WorkflowRunMode fromValue(int value)
Copyright © 2024. All rights reserved.