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

com.atlassian.maven.plugins.jgitflow.util.NamingUtil Maven / Gradle / Ivy

package com.atlassian.maven.plugins.jgitflow.util;

import com.google.common.base.CaseFormat;

import org.apache.commons.lang.StringUtils;

/**
 * @since version
 */
public class NamingUtil
{
    public static String camelCaseOrSpaceToDashed(String s)
    {
        String dashed = CaseFormat.UPPER_CAMEL.to(CaseFormat.LOWER_HYPHEN,s);
        String trimmed = StringUtils.replace(StringUtils.replace(StringUtils.replace(dashed, " -", "-"), "- ", "-"), " ", "-");

        return trimmed.toLowerCase();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy