1public enum ConstructorCallsEnum { 2 ONE(1), 3 TWO(2); 4 5 private final int i; 6 7 ConstructorCallsEnum(int i) { 8 this.i = i; 9 } 10}