public enum Planet{ //these are calls to the constructor EARTH(3), JUPITER(5), PLUTO(9); private Integer planetPosition; private Planet(Integer planetPosition){ this.planetPosition = planetPosition; } }