Skip to content

Instantly share code, notes, and snippets.

@olivermt
Created March 27, 2012 15:38
Show Gist options
  • Select an option

  • Save olivermt/2217146 to your computer and use it in GitHub Desktop.

Select an option

Save olivermt/2217146 to your computer and use it in GitHub Desktop.
/**
* Enumeration of modern system outcrop types
* @author Oliver Severin Tynes, Uni CIPR
*
*/
enum ModernSystemKindEnum {
FLUVIAL_SYSTEM('fluvial system'),
CLASTIC_SHORELINE('clastic shoreline'),
DESERT('desert'),
LAKE('lake'),
ALLUVIAL_FAN_OR_FAN_DELTA('alluvial fan or fan delta'),
UNKNOWN('unknown')
private final String text
ModernSystemKindEnum(String text) {
this.text = text
}
public String text() { return text }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment