Converts string to UPPERCASE_SNAKE_CASE.
static String toUpperCase(String text) { return toSnakeCase(text).toUpperCase(); }