Skip to content

Instantly share code, notes, and snippets.

@marcosabel
Last active February 28, 2019 08:42
Show Gist options
  • Save marcosabel/a25736f4ae12445cff63cdd59efb4553 to your computer and use it in GitHub Desktop.
Save marcosabel/a25736f4ae12445cff63cdd59efb4553 to your computer and use it in GitHub Desktop.
public enum JacksonExampleEnum {
OPTION_1("0", "0"), OPTION_2("1", "1");
private String a;
private String b;
JacksonTestEnum(String a, String b) {
this.a = a;
this.b = b;
}
public String getA() {
return a;
}
public String getB() {
return b;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment