(String word)
| 222 | |
| 223 | |
| 224 | private String normalizeFirstWord(String word) { |
| 225 | return (this == LOWER_CAMEL) ? Ascii.toLowerCase(word) : normalizeWord(word); |
| 226 | } |
| 227 | |
| 228 | |
| 229 | private static String firstCharOnlyToUpper(String word) { |
no test coverage detected