1 2 3 4 5 6 7 8 9 10 11 12 13
package jrummikub.control.turn; /** * Different kinds of turns */ public enum TurnMode { /** Turn zero with possibility to redeal */ MAY_REDEAL, /** Turn zero without possibility to redeal */ INSPECT_ONLY, /** A normal turn */ NORMAL_TURN }