public static enum ICubeGenerator.GeneratorReadyState extends java.lang.Enum<ICubeGenerator.GeneratorReadyState>
| Enum Constant and Description |
|---|
FAIL
Generating a cube or column will most likely fail in this state.
|
READY
Indicates that the generator is ready to generate a given cube or column
|
WAITING
Indicates that the generator is waiting for some resources to generate a given cube or column.
|
| Modifier and Type | Method and Description |
|---|---|
static ICubeGenerator.GeneratorReadyState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ICubeGenerator.GeneratorReadyState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ICubeGenerator.GeneratorReadyState READY
public static final ICubeGenerator.GeneratorReadyState WAITING
public static final ICubeGenerator.GeneratorReadyState FAIL
public static ICubeGenerator.GeneratorReadyState[] values()
for (ICubeGenerator.GeneratorReadyState c : ICubeGenerator.GeneratorReadyState.values()) System.out.println(c);
public static ICubeGenerator.GeneratorReadyState 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 null