public static enum FutureProgress.FutureProgressType extends java.lang.Enum<FutureProgress.FutureProgressType>
| Enum Constant and Description |
|---|
DEFAULT_FUTURE_PROGRESS |
GRAPH_LOADING_PROGRESS |
| Modifier and Type | Method and Description |
|---|---|
static FutureProgress.FutureProgressType |
fromTypeId(java.lang.String typeId) |
java.lang.String |
getTypeId() |
static FutureProgress.FutureProgressType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FutureProgress.FutureProgressType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FutureProgress.FutureProgressType DEFAULT_FUTURE_PROGRESS
public static final FutureProgress.FutureProgressType GRAPH_LOADING_PROGRESS
public static FutureProgress.FutureProgressType fromTypeId(java.lang.String typeId)
public java.lang.String getTypeId()
public static FutureProgress.FutureProgressType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static FutureProgress.FutureProgressType[] values()
for (FutureProgress.FutureProgressType c : FutureProgress.FutureProgressType.values()) System.out.println(c);