|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<BuildModeEnum>
org.hawk.module.script.enumeration.BuildModeEnum
public enum BuildModeEnum
This defines various way a hawk script can be executed.
DEBUG :- runs in debug mode Usage :- sh run-perf-hawk.sh -debug -f {hawk script file}
TRAINING :- shows the tasks implemented by the developer Usage :- sh run-perf-hawk.sh -training
PERF :- This runs in perf mode Usage :- sh run-perf-hawk.sh -perf -f {hawk script file}
HELP :- shows help message Usage :- sh run-perf-hawk.sh -help
COMPILE :- This parses the hawk script for syntax check Usage :- sh run-perf-hawk.sh -compile -f {hawk script file}
ScriptUsage
Enum Constant Summary | |
---|---|
COMPILE
|
|
DEBUG
|
|
HELP
|
|
PERF
|
|
PLOTTING
|
|
TRAINING
|
Method Summary | |
---|---|
static BuildModeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BuildModeEnum[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final BuildModeEnum DEBUG
public static final BuildModeEnum TRAINING
public static final BuildModeEnum PERF
public static final BuildModeEnum HELP
public static final BuildModeEnum COMPILE
public static final BuildModeEnum PLOTTING
Method Detail |
---|
public static BuildModeEnum[] values()
for (BuildModeEnum c : BuildModeEnum.values()) System.out.println(c);
public static BuildModeEnum 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |