Package ubic.gemma.core.apps
Enum GemmaCLI.CommandGroup
- java.lang.Object
-
- java.lang.Enum<GemmaCLI.CommandGroup>
-
- ubic.gemma.core.apps.GemmaCLI.CommandGroup
-
- All Implemented Interfaces:
Serializable
,Comparable<GemmaCLI.CommandGroup>
- Enclosing class:
- GemmaCLI
public static enum GemmaCLI.CommandGroup extends Enum<GemmaCLI.CommandGroup>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANALYSIS
DEPRECATED
EXPERIMENT
METADATA
MISC
PHENOTYPES
PLATFORM
SYSTEM
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GemmaCLI.CommandGroup
valueOf(String name)
Returns the enum constant of this type with the specified name.static GemmaCLI.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 GemmaCLI.CommandGroup EXPERIMENT
-
PLATFORM
public static final GemmaCLI.CommandGroup PLATFORM
-
ANALYSIS
public static final GemmaCLI.CommandGroup ANALYSIS
-
METADATA
public static final GemmaCLI.CommandGroup METADATA
-
PHENOTYPES
public static final GemmaCLI.CommandGroup PHENOTYPES
-
SYSTEM
public static final GemmaCLI.CommandGroup SYSTEM
-
MISC
public static final GemmaCLI.CommandGroup MISC
-
DEPRECATED
public static final GemmaCLI.CommandGroup DEPRECATED
-
-
Method Detail
-
values
public static GemmaCLI.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 (GemmaCLI.CommandGroup c : GemmaCLI.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 GemmaCLI.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
-
-