static enum Jobs.SupportedExecutionModes extends Enum<Jobs.SupportedExecutionModes>
| Enum Constant and Description |
|---|
EITHER
Either execution mode is supported.
|
ONLY_ASYNC
Only asynchronous execution mode is supported.
|
ONLY_SYNC
Only synchronous execution mode is supported.
|
| Modifier and Type | Method and Description |
|---|---|
static Jobs.SupportedExecutionModes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Jobs.SupportedExecutionModes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Jobs.SupportedExecutionModes ONLY_SYNC
public static final Jobs.SupportedExecutionModes ONLY_ASYNC
public static final Jobs.SupportedExecutionModes EITHER
public static Jobs.SupportedExecutionModes[] values()
for (Jobs.SupportedExecutionModes c : Jobs.SupportedExecutionModes.values()) System.out.println(c);
public static Jobs.SupportedExecutionModes 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 nullCopyright © 2024 Open Geospatial Consortium. All rights reserved.