toUpperCase static method

String toUpperCase(
  1. String text
)

Converts string to UPPERCASE_SNAKE_CASE.

Implementation

static String toUpperCase(String text) {
  return toSnakeCase(text).toUpperCase();
}