Skip to content

Instantly share code, notes, and snippets.

@filiperdt
Created May 5, 2021 18:31
Show Gist options
  • Save filiperdt/1cdad14a9107cb8c67480270046ad431 to your computer and use it in GitHub Desktop.
Save filiperdt/1cdad14a9107cb8c67480270046ad431 to your computer and use it in GitHub Desktop.
Enum function to print values ​​with the first capital letter
@Override
public String toString() {
return Character.toUpperCase(name().charAt(0)) + name().toLowerCase().substring(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment