public enum Execute extends Enum<Execute>
| Enum Constant and Description |
|---|
BLOCKING |
DEFAULT |
NON_BLOCKING |
| Modifier and Type | Method and Description |
|---|---|
static Execute |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Execute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Execute BLOCKING
public static final Execute NON_BLOCKING
public static final Execute DEFAULT
public static Execute[] values()
for (Execute c : Execute.values()) System.out.println(c);
public static Execute 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 © 2018–2022. All rights reserved.