Skip to content

Instantly share code, notes, and snippets.

@marcosabel
Last active February 27, 2019 17:15
Show Gist options
  • Save marcosabel/462b79ed3269d8d5aed3c2b61ef2469e to your computer and use it in GitHub Desktop.
Save marcosabel/462b79ed3269d8d5aed3c2b61ef2469e to your computer and use it in GitHub Desktop.
import com.fasterxml.jackson.annotation.JsonFormat;
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
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