public static enum Relay.Direction extends java.lang.Enum<Relay.Direction>
| Enum Constant and Description | 
|---|
| kBothdirection: both directions are valid. | 
| kForwarddirection: Only forward is valid. | 
| kReversedirection: only reverse is valid. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Relay.Direction | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Relay.Direction[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Relay.Direction kBoth
public static final Relay.Direction kForward
public static final Relay.Direction kReverse
public static Relay.Direction[] values()
for (Relay.Direction c : Relay.Direction.values()) System.out.println(c);
public static Relay.Direction valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null