package ProjectElectricLocomotive; public enum WheelsCount { Two(2), Three(3), Four(4); public final int count; WheelsCount(int count) { this.count = count; } }