Skip to content

Instantly share code, notes, and snippets.

@notyy
Created April 11, 2012 03:55
Show Gist options
  • Save notyy/2356738 to your computer and use it in GitHub Desktop.
Save notyy/2356738 to your computer and use it in GitHub Desktop.
java enum
public enum Orientation {
East("E"), South("S"), West("W"), North("N");
private final String id;
private Orientation(String id) {
this.id = id;
}
public String getId() {
return id;
}
}
我想从Orientation.East里可以取得缩写"E",也可以通过"E"获取East
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment