enum E { A("one", 1); E(String s, int num) { this.s = s; this.num = num; } private final String s; private final int num; }