public static enum RenderCompleteEvent.RenderState extends Enum<RenderCompleteEvent.RenderState>
Enum Constant and Description |
---|
FAILED_EXCEED_MAX_ATTEMPTS |
RENDER_ADDED |
RENDER_DRAWN |
Modifier and Type | Method and Description |
---|---|
static RenderCompleteEvent.RenderState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderCompleteEvent.RenderState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderCompleteEvent.RenderState RENDER_DRAWN
public static final RenderCompleteEvent.RenderState RENDER_ADDED
public static final RenderCompleteEvent.RenderState FAILED_EXCEED_MAX_ATTEMPTS
public static RenderCompleteEvent.RenderState[] values()
for (RenderCompleteEvent.RenderState c : RenderCompleteEvent.RenderState.values()) System.out.println(c);
public static RenderCompleteEvent.RenderState 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 null