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

me.tatarka.RetrolambdaUtil.groovy Maven / Gradle / Ivy

There is a newer version: 3.7.1
Show newest version
package me.tatarka

class RetrolambdaUtil {
    static String capitalize(CharSequence self) {
        return self.length() == 0 ? "" : "" + Character.toUpperCase(self.charAt(0)) + self.subSequence(1, self.length())
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy