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

com.reprezen.genflow.api.util.Strings Maven / Gradle / Ivy

package com.reprezen.genflow.api.util;

public class Strings {

	public static String toFirstLower(String s) {
		return s != null && s.length() > 0 ? s.substring(0, 1).toLowerCase() + s.substring(1) : s;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy