Suppose there is a simple enum called Type defined like this:enum Type{ X("S1"), Y("S2"); private String s; private Type(String s) { this.s = s; } ...
確定! 回上一頁