All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.soffa.foundation.commons.StringUtil Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package io.soffa.foundation.commons;

import com.google.common.base.CaseFormat;

public final class StringUtil {

    private StringUtil() {
    }

    public static String lowerCamelToLowerUnderscore(String input) {
        return CaseFormat.LOWER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, input);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy