(String word)
| 217 | |
| 218 | abstract String normalizeWord(String word); |
| 219 | private String normalizeFirstWord(String word) { |
| 220 | return (this == LOWER_CAMEL) ? Ascii.toLowerCase(word) : normalizeWord(word); |
| 221 | } |
| 222 | |
| 223 | private static String firstCharOnlyToUpper(String word) { |
| 224 | return (word.isEmpty()) |
no test coverage detected