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

com.infomaximum.cluster.graphql.utils.CaseFormat Maven / Gradle / Ivy

The newest version!
package com.infomaximum.cluster.graphql.utils;

public class CaseFormat {

    public static String toLowerUnderscore(String value) {
        String result = value.replaceAll("([a-z])([A-Z])", "$1_$2");
        return result.toLowerCase();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy