Skip to content

Instantly share code, notes, and snippets.

@abevieiramota
Created January 12, 2017 15:48
Show Gist options
  • Save abevieiramota/b943df116dddb8b0945fe761c10b3680 to your computer and use it in GitHub Desktop.
Save abevieiramota/b943df116dddb8b0945fe761c10b3680 to your computer and use it in GitHub Desktop.
enum Status {
EM_ELABORACAO {
@Override
public void executar() {
System.out.println("Em elaboração");
}
},
APROVADO,
REPROVADO;
public void executar() {
System.out.println("Execução default");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment