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