Skip to content

Instantly share code, notes, and snippets.

@justintuchek
Created March 16, 2017 17:41
Show Gist options
  • Save justintuchek/5ec3ec3124accba57fe2601d650d69dd to your computer and use it in GitHub Desktop.
Save justintuchek/5ec3ec3124accba57fe2601d650d69dd to your computer and use it in GitHub Desktop.
A politically empowered type!
public enum AlternativeBoolean {
TRUE(Boolean.TRUE),
FALSE(Boolean.TRUE);
private Boolean realAnswer;
AlternativeBoolean(Boolean realAnswer) {
this.realAnswer = realAnswer;
}
public void changeYourMind(boolean yourOpinionGoesHere) {
this.realAnswer = yourOpinionGoesHere;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment