public enum ProcessingMode extends Enum<ProcessingMode>
Scheduler processing mode.| Enum Constant and Description |
|---|
ASYNC
Asynchronous mode.
|
SYNC
Synchronous mode.
|
| Modifier and Type | Field and Description |
|---|---|
static ProcessingMode |
DEFAULT
Default mode.
|
| Modifier and Type | Method and Description |
|---|---|
static ProcessingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessingMode ASYNC
public static final ProcessingMode SYNC
public static final ProcessingMode DEFAULT
public static ProcessingMode[] values()
for (ProcessingMode c : ProcessingMode.values()) System.out.println(c);
public static ProcessingMode 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 © 2013–2019 BB Corp. All rights reserved.