Created
June 1, 2010 13:41
-
-
Save bherrmann7/420949 to your computer and use it in GitHub Desktop.
This file contains 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
assert getEnumName('getPoeHoeFoe') == 'POE_HOE_FOE' | |
String getEnumName(methodName){ | |
def str = methodName.collect { | |
(Character.isUpperCase(it as char)?'_':'') + it | |
}.join() | |
str = str[4..-1].toUpperCase() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment