Enum CommandResult.COLOUR
- java.lang.Object
-
- java.lang.Enum<CommandResult.COLOUR>
-
- com.javahollic.jira.emh.api.extension.command.CommandResult.COLOUR
-
- All Implemented Interfaces:
Serializable
,Comparable<CommandResult.COLOUR>
- Enclosing class:
- CommandResult
public static enum CommandResult.COLOUR extends Enum<CommandResult.COLOUR>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CommandResult.COLOUR
valueOf(String name)
Returns the enum constant of this type with the specified name.static CommandResult.COLOUR[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
yellow
public static final CommandResult.COLOUR yellow
-
red
public static final CommandResult.COLOUR red
-
green
public static final CommandResult.COLOUR green
-
purple
public static final CommandResult.COLOUR purple
-
gray
public static final CommandResult.COLOUR gray
-
random
public static final CommandResult.COLOUR random
-
-
Method Detail
-
values
public static CommandResult.COLOUR[] 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 (CommandResult.COLOUR c : CommandResult.COLOUR.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommandResult.COLOUR 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
-
-