toUppercaseCaseWithUnderscore method

String toUppercaseCaseWithUnderscore()

Implementation

String toUppercaseCaseWithUnderscore() {
  return replaceAll(' ', '_').toUpperCase();
}