Package org.corpus_tools.pepper.cli
Enum PepperStarter.COMMAND
- java.lang.Object
-
- java.lang.Enum<PepperStarter.COMMAND>
-
- org.corpus_tools.pepper.cli.PepperStarter.COMMAND
-
- All Implemented Interfaces:
Serializable,Comparable<PepperStarter.COMMAND>
- Enclosing class:
- PepperStarter
public static enum PepperStarter.COMMAND extends Enum<PepperStarter.COMMAND>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAbbreviation()StringgetDescription()StringgetName()StringgetParameters()static PepperStarter.COMMANDvalueOf(String name)Returns the enum constant of this type with the specified name.static PepperStarter.COMMAND[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VERSION
public static final PepperStarter.COMMAND VERSION
-
PRINT_DEPS
public static final PepperStarter.COMMAND PRINT_DEPS
-
UPDATE
public static final PepperStarter.COMMAND UPDATE
-
LIST_ALL
public static final PepperStarter.COMMAND LIST_ALL
-
LIST
public static final PepperStarter.COMMAND LIST
-
CONF
public static final PepperStarter.COMMAND CONF
-
HELP
public static final PepperStarter.COMMAND HELP
-
SELFTEST
public static final PepperStarter.COMMAND SELFTEST
-
FITNESS
public static final PepperStarter.COMMAND FITNESS
-
EXIT
public static final PepperStarter.COMMAND EXIT
-
CONVERT
public static final PepperStarter.COMMAND CONVERT
-
OSGI
public static final PepperStarter.COMMAND OSGI
-
INSTALL_START
public static final PepperStarter.COMMAND INSTALL_START
-
REMOVE
public static final PepperStarter.COMMAND REMOVE
-
START_OSGI
public static final PepperStarter.COMMAND START_OSGI
-
STOP_OSGI
public static final PepperStarter.COMMAND STOP_OSGI
-
CLEAN
public static final PepperStarter.COMMAND CLEAN
-
DEBUG
public static final PepperStarter.COMMAND DEBUG
-
REPEAT
public static final PepperStarter.COMMAND REPEAT
-
-
Method Detail
-
values
public static PepperStarter.COMMAND[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PepperStarter.COMMAND c : PepperStarter.COMMAND.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PepperStarter.COMMAND valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getName
public String getName()
-
getAbbreviation
public String getAbbreviation()
-
getParameters
public String getParameters()
-
getDescription
public String getDescription()
-
-