public static enum ForEachState.Mode extends Enum<ForEachState.Mode>
| Enum Constant and Description |
|---|
PARALLEL |
SEQUENTIAL |
| Modifier and Type | Method and Description |
|---|---|
static ForEachState.Mode |
fromValue(String value) |
String |
toString() |
String |
value() |
static ForEachState.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ForEachState.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ForEachState.Mode SEQUENTIAL
public static final ForEachState.Mode PARALLEL
public static ForEachState.Mode[] values()
for (ForEachState.Mode c : ForEachState.Mode.values()) System.out.println(c);
public static ForEachState.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 nullpublic String toString()
toString in class Enum<ForEachState.Mode>public String value()
public static ForEachState.Mode fromValue(String value)
Copyright © 2020–2023 CNCF. All rights reserved.