Uses of Class
ro.inf.p2.odd.alan.TuringMachine.Direction

Uses of TuringMachine.Direction in ro.inf.p2.odd.alan
 

Methods in ro.inf.p2.odd.alan that return TuringMachine.Direction
 TuringMachine.Direction TransitionFunctionElement.getD()
          richtung in die sich der schreib lese kopf bewegen soll (L oder R)
static TuringMachine.Direction TuringMachine.Direction.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TuringMachine.Direction[] TuringMachine.Direction.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in ro.inf.p2.odd.alan with parameters of type TuringMachine.Direction
 void TransitionFunctionElement.setD(TuringMachine.Direction value)
          richtung in die sich der schreib lese kopf bewegen soll (L oder R)
 

Constructors in ro.inf.p2.odd.alan with parameters of type TuringMachine.Direction
TransitionFunctionElement(int next, char symbol, TuringMachine.Direction direction)