public static enum OrchestrationMode.Mode extends Enum<OrchestrationMode.Mode>
| Enum Constant and Description |
|---|
ASYNC
Asynchronous.
|
SYNC
Synchronous.
|
| Modifier and Type | Field and Description |
|---|---|
static OrchestrationMode.Mode |
DEFAULT
Default
OrchestrationMode.Mode. |
| Modifier and Type | Method and Description |
|---|---|
static OrchestrationMode.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrchestrationMode.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrchestrationMode.Mode SYNC
public static final OrchestrationMode.Mode ASYNC
public static final OrchestrationMode.Mode DEFAULT
OrchestrationMode.Mode.public static OrchestrationMode.Mode[] values()
for (OrchestrationMode.Mode c : OrchestrationMode.Mode.values()) System.out.println(c);
public static OrchestrationMode.Mode 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 © 2013–2019 BB Corp. All rights reserved.