Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gdonega/f0f3b50ca0db0ac46a907c53035c22a9 to your computer and use it in GitHub Desktop.
Save gdonega/f0f3b50ca0db0ac46a907c53035c22a9 to your computer and use it in GitHub Desktop.
Java - Enum: exemplo
public enum TipoJogo {
ACAO("Ação"), AVENTURA("Aventura"), RPG("Role-playing game");
private String descricao;
private TipoJogo(String descricao) {
this.descricao = descricao;
}
public String getDescricao() {
return descricao;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment