public enum Direction extends Enum<Direction>
 When an output is turned on without specifying a direction, the
 default direction is RIGHT.
| Enum Constant and Description | 
|---|
LEFT
Left direction, as indicated by the LED on the control lab. 
 | 
REVERSE
Reverse direction, relative to the existing direction of the port. 
 | 
RIGHT
Right direction, as indicated by the LED on the control lab. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
byte | 
getCode()
The byte expected by the control lab for the change direction command. 
 | 
static Direction | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Direction[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Direction LEFT
public static final Direction RIGHT
public static final Direction REVERSE
public static Direction[] values()
for (Direction c : Direction.values()) System.out.println(c);
public static Direction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic byte getCode()
Copyright © 2016–2025. All rights reserved.