public static enum EpochManager.ParallelMode extends Enum<EpochManager.ParallelMode>
PARALLEL_BETWEEN_EPOCH from average users.| 枚举常量和说明 |
|---|
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.
|
| 限定符和类型 | 方法和说明 |
|---|---|
static EpochManager.ParallelMode |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static EpochManager.ParallelMode[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
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 - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.