package nim; public class Move { public enum Row { TOP, MIDDLE, BOTTOM; public String getName() { return name().toLowerCase(); } } public final Row row; public final int count; public Move(Row row, int count) { this.row = row; this.count = count; } }