1 enum Size 2 { 3 SMALL("S"),MEDIUM("M"),LARGE("L"); 4 private String abbreviation; 5 6 public String getAbbreviation() 7 { 8 return abbreviation; 9 } 10 private Size(String abb) 11 { 12 this.abbreviation = abb; 13 } 14 }
http://www.cnblogs.com/ymind/archive/2012/03/19/2406602.html