| Enum Constant and Description |
|---|
GENERATE
"generate" means that jte files will be converted into Java source _before_ the main java code of your project
is compiled, and will become part of your application jar during project build.
|
PRECOMPILE
"precompile" means that jte files will be turned into java classes _after_ the main application code is built,
and will be separate resources to be loaded by the jte runtime.
|
| Modifier and Type | Method and Description |
|---|---|
static JteStage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JteStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JteStage PRECOMPILE
public static final JteStage GENERATE
public static JteStage[] values()
for (JteStage c : JteStage.values()) System.out.println(c);
public static JteStage 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