Returns a string array with all supported encodings. @return encodings
()
| 307 | * @return encodings |
| 308 | */ |
| 309 | public static String[] encodings() { |
| 310 | if(encodings == null) encodings = Charset.availableCharsets().keySet().toArray(String[]::new); |
| 311 | return encodings; |
| 312 | } |
| 313 | |
| 314 | /** |
| 315 | * Converts a string to camel case. |
no test coverage detected