public enum ModuleMethod extends Enum<ModuleMethod>
Enum Constant and Description |
---|
clean_up |
do_run |
do_test |
do_verify_input |
do_verify_output |
do_verify_parameters |
init |
Modifier and Type | Method and Description |
---|---|
static ModuleMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModuleMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleMethod init
public static final ModuleMethod do_verify_parameters
public static final ModuleMethod do_verify_input
public static final ModuleMethod do_test
public static final ModuleMethod do_run
public static final ModuleMethod do_verify_output
public static final ModuleMethod clean_up
public static ModuleMethod[] values()
for (ModuleMethod c : ModuleMethod.values()) System.out.println(c);
public static ModuleMethod 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 © 2015 SeqWare. All rights reserved.