lejos.robotics
Enum Colors.Color
java.lang.Object
java.lang.Enum<Colors.Color>
lejos.robotics.Colors.Color
- All Implemented Interfaces:
- Comparable<Colors.Color>
- Enclosing class:
- Colors
public static enum Colors.Color
- extends Enum<Colors.Color>
Method Summary |
static Colors.Color |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Colors.Color[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
NONE
public static final Colors.Color NONE
BLACK
public static final Colors.Color BLACK
BLUE
public static final Colors.Color BLUE
GREEN
public static final Colors.Color GREEN
YELLOW
public static final Colors.Color YELLOW
RED
public static final Colors.Color RED
WHITE
public static final Colors.Color WHITE
values
public static Colors.Color[] 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 (Colors.Color c : Colors.Color.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Colors.Color 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 name
NullPointerException
- if the argument is null