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