org.osm2world.console
public static enum CLIArgumentsUtil.ProgramMode extends Enum<CLIArgumentsUtil.ProgramMode>
Enum Constant and Description |
---|
CONVERT |
GUI |
HELP |
PARAMFILE |
VERSION |
Modifier and Type | Method and Description |
---|---|
static CLIArgumentsUtil.ProgramMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CLIArgumentsUtil.ProgramMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CLIArgumentsUtil.ProgramMode GUI
public static final CLIArgumentsUtil.ProgramMode CONVERT
public static final CLIArgumentsUtil.ProgramMode HELP
public static final CLIArgumentsUtil.ProgramMode VERSION
public static final CLIArgumentsUtil.ProgramMode PARAMFILE
public static CLIArgumentsUtil.ProgramMode[] values()
for (CLIArgumentsUtil.ProgramMode c : CLIArgumentsUtil.ProgramMode.values()) System.out.println(c);
public static CLIArgumentsUtil.ProgramMode 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 null