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