cz.encircled.joiner.util.StringUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joiner-core Show documentation
Show all versions of joiner-core Show documentation
Joiner is a Java library which allows to create type-safe JPA queries.
package cz.encircled.joiner.util;
public class StringUtils {
public static String uncapitalize(String str) {
if (str == null || str.isEmpty()) {
return str;
}
return Character.toLowerCase(str.charAt(0)) + str.substring(1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy