Created
January 12, 2017 15:48
-
-
Save abevieiramota/b943df116dddb8b0945fe761c10b3680 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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