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