Last active
February 28, 2019 08:42
-
-
Save marcosabel/a25736f4ae12445cff63cdd59efb4553 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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