lejos.robotics
Enum Colors.Color

java.lang.Object
  extended by java.lang.Enum<Colors.Color>
      extended by lejos.robotics.Colors.Color
All Implemented Interfaces:
Comparable<Colors.Color>
Enclosing class:
Colors

public static enum Colors.Color
extends Enum<Colors.Color>


Enum Constant Summary
BLACK
           
BLUE
           
GREEN
           
NONE
           
RED
           
WHITE
           
YELLOW
           
 
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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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