Skip to content

Instantly share code, notes, and snippets.

@smoak
Created February 15, 2012 22:11
Show Gist options
  • Save smoak/1839375 to your computer and use it in GitHub Desktop.
Save smoak/1839375 to your computer and use it in GitHub Desktop.
public enum CallType {
Outgoing("Outgoing Call"),
Incoming("Incoming Call"),
Missed("Missed Call");
private String label;
public String getLabel() {
return this.label;
}
CallType(String label) {
this.label = label;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment