lejos.nxt.addon
Enum NXTLineLeader.Command

java.lang.Object
  extended by java.lang.Enum<NXTLineLeader.Command>
      extended by lejos.nxt.addon.NXTLineLeader.Command
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<NXTLineLeader.Command>
Enclosing class:
NXTLineLeader

public static enum NXTLineLeader.Command
extends java.lang.Enum<NXTLineLeader.Command>


Enum Constant Summary
CALIBRATE_BLACK
           
CALIBRATE_WHITE
           
FREQ_50HZ
           
FREQ_60HZ
           
FREQ_UNIVERSAL
           
INVERT_COLORS
           
RESET_COLORS
           
SLEEP
           
SNAPSHOT
           
WAKEUP
           
 
Method Summary
static NXTLineLeader.Command valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NXTLineLeader.Command[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CALIBRATE_WHITE

public static final NXTLineLeader.Command CALIBRATE_WHITE

CALIBRATE_BLACK

public static final NXTLineLeader.Command CALIBRATE_BLACK

SLEEP

public static final NXTLineLeader.Command SLEEP

WAKEUP

public static final NXTLineLeader.Command WAKEUP

INVERT_COLORS

public static final NXTLineLeader.Command INVERT_COLORS

RESET_COLORS

public static final NXTLineLeader.Command RESET_COLORS

SNAPSHOT

public static final NXTLineLeader.Command SNAPSHOT

FREQ_60HZ

public static final NXTLineLeader.Command FREQ_60HZ

FREQ_50HZ

public static final NXTLineLeader.Command FREQ_50HZ

FREQ_UNIVERSAL

public static final NXTLineLeader.Command FREQ_UNIVERSAL
Method Detail

values

public static final NXTLineLeader.Command[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(NXTLineLeader.Command c : NXTLineLeader.Command.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static NXTLineLeader.Command valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name