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

io.cucumber.core.snippets.CamelCaseJoiner Maven / Gradle / Ivy

There is a newer version: 7.20.1
Show newest version
package io.cucumber.core.snippets;

import java.util.List;

final class CamelCaseJoiner implements Joiner {

    @Override
    public String concatenate(List words) {
        StringBuilder functionName = new StringBuilder();
        boolean firstWord = true;
        for (String word : words) {
            if (firstWord) {
                functionName.append(word.toLowerCase());
                firstWord = false;
            } else {
                functionName.append(capitalize(word));
            }
        }
        return functionName.toString();
    }

    private String capitalize(String line) {
        return Character.toUpperCase(line.charAt(0)) + line.substring(1);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy