Created
March 27, 2012 15:38
-
-
Save olivermt/2217146 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 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