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

com.aventstack.extentreports.utils.StringUtil Maven / Gradle / Ivy

There is a newer version: 5.1.2
Show newest version
package com.aventstack.extentreports.utils;

public class StringUtil {
    
    private StringUtil() { }
    
    public static String capitalize(String s) {
        return Character.toLowerCase(s.charAt(0)) + s.substring(1);
    }
    
    public static boolean isNotNullOrEmpty (String str) {
		return str != null && !str.isEmpty();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy