|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ResourceHandle.State>
com.triangularpixels.rebirth.resources.ResourceHandle.State
public static enum ResourceHandle.State
| Enum Constant Summary | |
|---|---|
CREATED
The resource has finished it's mainCreate() method and is fully created |
|
DESTROYED
The resource has been destroyed and should no longer be used |
|
PARSED
The resource has been instantiated and the corresponding xml parsed |
|
PARTIALLY_CREATED
The resource has finished it's create() method and is waiting to be fully created |
|
| Method Summary | |
|---|---|
static ResourceHandle.State |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ResourceHandle.State[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ResourceHandle.State PARSED
public static final ResourceHandle.State PARTIALLY_CREATED
public static final ResourceHandle.State CREATED
public static final ResourceHandle.State DESTROYED
| Method Detail |
|---|
public static final ResourceHandle.State[] values()
for(ResourceHandle.State c : ResourceHandle.State.values())
System.out.println(c);
public static ResourceHandle.State valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||