public enum ExecutionMode extends Enum<ExecutionMode>
| Modifier and Type | Method and Description |
|---|---|
static Optional<ExecutionMode> |
fromString(String string) |
String |
toString() |
static ExecutionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionMode SYNC
public static final ExecutionMode ASYNC
public static final ExecutionMode AUTO
public static ExecutionMode[] values()
for (ExecutionMode c : ExecutionMode.values()) System.out.println(c);
public static ExecutionMode 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<ExecutionMode>public static Optional<ExecutionMode> fromString(String string)
Copyright © 2015–2021 52North Initiative for Geospatial Open Source Software GmbH. All rights reserved.