public enum RenderMode extends Enum<RenderMode>
Enum Constant and Description |
---|
EXAMPLE
Render to run as an example.
|
SNIPPET
A snippet of code, for documentation purpose, the code does not have to execute.
|
TEST
Render to be tested by codetrans.
|
Modifier and Type | Method and Description |
---|---|
static RenderMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderMode SNIPPET
public static final RenderMode EXAMPLE
public static final RenderMode TEST
public static RenderMode[] values()
for (RenderMode c : RenderMode.values()) System.out.println(c);
public static RenderMode 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 nullCopyright © 2017. All rights reserved.