Skip to content

Instantly share code, notes, and snippets.

@os890
Created June 21, 2018 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save os890/f8786c5a18d075616728ff3b556f622d to your computer and use it in GitHub Desktop.
Save os890/f8786c5a18d075616728ff3b556f622d to your computer and use it in GitHub Desktop.
public interface MessageId {
String getId();
}
public enum MyMessage implements MessageId {
MSG_01(),
MSG_02();
@Override
public String getId() {
return name();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment