public static enum Analysis.Direction extends Enum<Analysis.Direction>
| Enum Constant and Description | 
|---|
| BACKWARDThe backward direction. | 
| FORWARDThe forward direction. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Analysis.Direction | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Analysis.Direction[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Analysis.Direction FORWARD
public static final Analysis.Direction BACKWARD
public static Analysis.Direction[] values()
for (Analysis.Direction c : Analysis.Direction.values()) System.out.println(c);
public static Analysis.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 null