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

io.github.kilmajster.keycloak.utils.UserAttributeLabelGenerator Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package io.github.kilmajster.keycloak.utils;

public final class UserAttributeLabelGenerator {

    public static String from(final String attributeName) {
        final String lowercaseWithSpaces = attributeName
                .toLowerCase()
                .replace("_", " ")
                .replace("-", " ");

        return capitalizeFirstChar(lowercaseWithSpaces);
    }

    private static String capitalizeFirstChar(final String lowercaseWithSpaces) {
        return lowercaseWithSpaces.substring(0,1).toUpperCase() + lowercaseWithSpaces.substring(1).toLowerCase();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy