public enum ExecutionMode extends Enum<ExecutionMode>
| Enum Constant and Description |
|---|
ASYNC
Asynchronous execution mode.
|
AUTO
Auto execution mode.
|
SYNC
Synchronous execution mode.
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionMode |
fromString(String type) |
String |
getStringRepresentation() |
String |
toString() |
static String |
toString(ExecutionMode type) |
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 final String getStringRepresentation()
public static ExecutionMode fromString(String type)
public static String toString(ExecutionMode type)
public String toString()
toString in class Enum<ExecutionMode>Copyright © 2024 Open Geospatial Consortium. All rights reserved.