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

com.browserstack.client.util.Tools Maven / Gradle / Ivy

The newest version!
package com.browserstack.client.util;

public class Tools {

    // Checks if a string is null or empty
    public static boolean isStringEmpty(String str) {
        return (str == null || str.isEmpty());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy