public static enum JobHandler.Cardinality extends Enum<JobHandler.Cardinality>
| Enum Constant and Description |
|---|
ONE
Default cardinality.
|
ONE_TO_N
1..n - parallel multi instance async before.
|
ZERO_TO_N
0..n - parallel multi instance async after.
|
ZERO_TO_ONE
0..1 - sequential multi instance async after.
|
| Modifier and Type | Method and Description |
|---|---|
static JobHandler.Cardinality |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobHandler.Cardinality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobHandler.Cardinality ONE_TO_N
public static final JobHandler.Cardinality ONE
public static final JobHandler.Cardinality ZERO_TO_N
public static final JobHandler.Cardinality ZERO_TO_ONE
public static JobHandler.Cardinality[] values()
for (JobHandler.Cardinality c : JobHandler.Cardinality.values()) System.out.println(c);
public static JobHandler.Cardinality 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 © 2023 Camunda Services GmbH. All rights reserved.