public static enum DataFlowProblem.DF_Direction extends Enum<DataFlowProblem.DF_Direction>
| Enum Constant and Description | 
|---|
| BACKWARD | 
| BIDIRECTIONAL | 
| FORWARD | 
| Modifier and Type | Method and Description | 
|---|---|
| static DataFlowProblem.DF_Direction | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static DataFlowProblem.DF_Direction[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final DataFlowProblem.DF_Direction FORWARD
public static final DataFlowProblem.DF_Direction BACKWARD
public static final DataFlowProblem.DF_Direction BIDIRECTIONAL
public static DataFlowProblem.DF_Direction[] values()
for (DataFlowProblem.DF_Direction c : DataFlowProblem.DF_Direction.values()) System.out.println(c);
public static DataFlowProblem.DF_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 nullCopyright © 2001-2015 JRuby. All Rights Reserved.