public static enum BatchRequestDsml.Processing extends Enum<BatchRequestDsml.Processing>
| Enum Constant and Description |
|---|
PARALLEL
Parallel processing.
|
SEQUENTIAL
Sequential processing.
|
| Modifier and Type | Method and Description |
|---|---|
static BatchRequestDsml.Processing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BatchRequestDsml.Processing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BatchRequestDsml.Processing SEQUENTIAL
public static final BatchRequestDsml.Processing PARALLEL
public static BatchRequestDsml.Processing[] values()
for (BatchRequestDsml.Processing c : BatchRequestDsml.Processing.values()) System.out.println(c);
public static BatchRequestDsml.Processing 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 © 2021. All rights reserved.