public enum ReleaseMode extends java.lang.Enum<ReleaseMode>
| Enum Constant | Description |
|---|---|
Debug |
Fast compile, little optimization.
|
Release |
Same as [[ReleaseFull]] for versions 0.3.x.
|
ReleaseFast |
Runtime optimize, faster compile, smaller binary.
|
ReleaseFull |
Runtime optimize, prefer speed over compile time and size.
|
| Modifier and Type | Field | Description |
|---|---|---|
java.lang.String |
value |
| Modifier and Type | Method | Description |
|---|---|---|
static ReleaseMode |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ReleaseMode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReleaseMode Debug
public static final ReleaseMode Release
public static final ReleaseMode ReleaseFast
public static final ReleaseMode ReleaseFull
public static ReleaseMode[] values()
for (ReleaseMode c : ReleaseMode.values()) System.out.println(c);
public static ReleaseMode 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