public static enum FutureWaiter.Kind extends Enum<FutureWaiter.Kind>
| Enum Constant and Description |
|---|
ALL |
ALL_OR_FIRST_FAILED |
ANY |
ITERATE |
| Modifier and Type | Field and Description |
|---|---|
byte |
value |
| Modifier and Type | Method and Description |
|---|---|
FutureWaiter.Kind |
intern() |
String |
toString() |
static FutureWaiter.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FutureWaiter.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FutureWaiter.Kind ANY
public static final FutureWaiter.Kind ALL
public static final FutureWaiter.Kind ALL_OR_FIRST_FAILED
public static final FutureWaiter.Kind ITERATE
public static FutureWaiter.Kind[] values()
for (FutureWaiter.Kind c : FutureWaiter.Kind.values()) System.out.println(c);
public static FutureWaiter.Kind 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 nullpublic FutureWaiter.Kind intern()
public String toString()
toString in class Enum<FutureWaiter.Kind>Copyright © 2021. All rights reserved.