public static enum EpochManager.ParallelMode extends Enum<EpochManager.ParallelMode>
PARALLEL_BETWEEN_EPOCH from average users.| Enum Constant and Description |
|---|
PARALLEL_BETWEEN_EPOCH
Subsequent epochs can begin execution even if the previous epoch has not yet completed.
|
SERIAL_BETWEEN_EPOCH
Subsequent epochs must wait until the previous epoch is completed before they can start.
|
| Modifier and Type | Method and Description |
|---|---|
static EpochManager.ParallelMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EpochManager.ParallelMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EpochManager.ParallelMode SERIAL_BETWEEN_EPOCH
public static final EpochManager.ParallelMode PARALLEL_BETWEEN_EPOCH
SERIAL_BETWEEN_EPOCH.public static EpochManager.ParallelMode[] values()
for (EpochManager.ParallelMode c : EpochManager.ParallelMode.values()) System.out.println(c);
public static EpochManager.ParallelMode 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 © 2014–2025 The Apache Software Foundation. All rights reserved.