public enum RenderStatus extends java.lang.Enum<RenderStatus>
Enum Constant and Description |
---|
CANCEL
"cancel", "render canceled, check log"
|
CRASH
"crash", "render crashed, check log"
|
END
"end", "render finished"
|
FAIL
"fail", "render failed, check log"
|
START
"start", "render start"
|
UPDATE
"update", "render update, is running"
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getMsg() |
java.lang.String |
getStatus() |
void |
setMsg(java.lang.String msg) |
void |
setStatus(java.lang.String status) |
static RenderStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenderStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderStatus START
public static final RenderStatus END
public static final RenderStatus UPDATE
public static final RenderStatus CANCEL
public static final RenderStatus FAIL
public static final RenderStatus CRASH
public static RenderStatus[] values()
for (RenderStatus c : RenderStatus.values()) System.out.println(c);
public static RenderStatus 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 java.lang.String getStatus()
public void setStatus(java.lang.String status)
public java.lang.String getMsg()
public void setMsg(java.lang.String msg)