Skip to content

Instantly share code, notes, and snippets.

@RyanBreaker
Created April 27, 2016 15:16
Show Gist options
  • Save RyanBreaker/612febddf5b213d136b5ea96f2a277b0 to your computer and use it in GitHub Desktop.
Save RyanBreaker/612febddf5b213d136b5ea96f2a277b0 to your computer and use it in GitHub Desktop.
enum Command {
NEW_PERSON {
final char KEY = 'P';
},
ADD_FRIEND {
final char KEY = 'A';
},
UNFRIEND {
final char KEY = 'U';
},
LIST_FRIENDS {
final char KEY = 'L';
},
QUERY_FRIENDS {
final char KEY = 'Q';
},
EXIT {
final char KEY = 'X';
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment