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

com.shaishavgandhi.navigator.StringUtils Maven / Gradle / Ivy

The newest version!
package com.shaishavgandhi.navigator;

import androidx.annotation.NonNull;

class StringUtils {

    static String capitalize(@NonNull String input) {
        if(input.length() == 0) {
            return "";
        } else if (input.length() == 1) {
            return input.toUpperCase();
        }

        return input.substring(0, 1).toUpperCase() + input.substring(1);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy