Example usage for org.apache.commons.text WordUtils capitalize

List of usage examples for org.apache.commons.text WordUtils capitalize

Introduction

In this page you can find the example usage for org.apache.commons.text WordUtils capitalize.

Prototype

public static String capitalize(final String str) 

Source Link

Document

Capitalizes all the whitespace separated words in a String.

Usage

From source file:de.arraying.arraybot.util.UFormatting.java

/**
 * Makes an enum field displayable./*from  w  ww. j av a2  s  . co m*/
 * @param field The field.
 * @return A displayable string.
 */
public static String displayableEnumField(Object field) {
    return WordUtils.capitalize(field.toString().toLowerCase()).replace("_", "");
}