Package ubic.gemma.cli.util
Enum CLI.CommandGroup
- java.lang.Object
-
- java.lang.Enum<CLI.CommandGroup>
-
- ubic.gemma.cli.util.CLI.CommandGroup
-
- All Implemented Interfaces:
Serializable
,Comparable<CLI.CommandGroup>
- Enclosing interface:
- CLI
public static enum CLI.CommandGroup extends Enum<CLI.CommandGroup>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANALYSIS
DEPRECATED
EXPERIMENT
METADATA
MISC
PLATFORM
SYSTEM
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CLI.CommandGroup
valueOf(String name)
Returns the enum constant of this type with the specified name.static CLI.CommandGroup[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXPERIMENT
public static final CLI.CommandGroup EXPERIMENT
-
PLATFORM
public static final CLI.CommandGroup PLATFORM
-
ANALYSIS
public static final CLI.CommandGroup ANALYSIS
-
METADATA
public static final CLI.CommandGroup METADATA
-
SYSTEM
public static final CLI.CommandGroup SYSTEM
-
MISC
public static final CLI.CommandGroup MISC
-
DEPRECATED
public static final CLI.CommandGroup DEPRECATED
-
-
Method Detail
-
values
public static CLI.CommandGroup[] 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 (CLI.CommandGroup c : CLI.CommandGroup.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CLI.CommandGroup 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
-
-