Package eu.isas.searchgui.cmd
Enum FastaCLIParams
- All Implemented Interfaces:
Serializable,Comparable<FastaCLIParams>,java.lang.constant.Constable
This class contains the parameters which can be used in the FASTA command
line.
- Author:
- Marc Vaudel, Harald Barsnes
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Field Summary
FieldsModifier and TypeFieldDescriptionExplanation for the CLI parameter.booleanBoolean indicating whether the command option has argument.Short Id for the CLI parameter.booleanBoolean indicating whether the parameter is mandatory. -
Method Summary
Modifier and TypeMethodDescriptionstatic voidcreateOptionsCLI(org.apache.commons.cli.Options aOptions) Creates the options for the command line interface based on the possible values.static StringReturns the options as a string.static FastaCLIParamsReturns the enum constant of this type with the specified name.static FastaCLIParams[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
in
-
decoy
-
decoy_suffix
-
-
Field Details
-
id
Short Id for the CLI parameter. -
description
Explanation for the CLI parameter. -
mandatory
public boolean mandatoryBoolean indicating whether the parameter is mandatory. -
hasArgument
public boolean hasArgumentBoolean indicating whether the command option has argument.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getOptionsAsString
Returns the options as a string.- Returns:
- the options as a string
-
createOptionsCLI
public static void createOptionsCLI(org.apache.commons.cli.Options aOptions) Creates the options for the command line interface based on the possible values.- Parameters:
aOptions- the options object where the options will be added
-