de.unihd.dbs.heideltime.standalone
Enum Constant and Description |
---|
CONFIGFILE |
DCT |
DOCTYPE |
ENCODING |
HELP |
INTERVALS |
LANGUAGE |
LOCALE |
OUTPUTTYPE |
POSTAGGER |
VERBOSITY |
VERBOSITY2 |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getDefaultValue() |
static CLISwitch |
getEnumFromSwitch(java.lang.String cliSwitch) |
boolean |
getHasFollowingValue() |
boolean |
getIsActive() |
java.lang.String |
getName() |
java.lang.String |
getSwitchString() |
java.lang.Object |
getValue()
if this switch is supposed to have a value after it, spit out the saved value
or the default value if the value is unset. if it's not supposed to have a value,
return null
|
void |
setValue(java.lang.String val) |
static CLISwitch |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CLISwitch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CLISwitch VERBOSITY
public static final CLISwitch VERBOSITY2
public static final CLISwitch ENCODING
public static final CLISwitch OUTPUTTYPE
public static final CLISwitch LANGUAGE
public static final CLISwitch DOCTYPE
public static final CLISwitch DCT
public static final CLISwitch CONFIGFILE
public static final CLISwitch LOCALE
public static final CLISwitch POSTAGGER
public static final CLISwitch INTERVALS
public static final CLISwitch HELP
public static CLISwitch[] values()
for (CLISwitch c : CLISwitch.values()) System.out.println(c);
public static CLISwitch 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 nullpublic static CLISwitch getEnumFromSwitch(java.lang.String cliSwitch)
public void setValue(java.lang.String val)
public java.lang.Object getValue()
public java.lang.String getName()
public java.lang.Object getDefaultValue()
public java.lang.String getSwitchString()
public boolean getHasFollowingValue()
public boolean getIsActive()