com.browserstack.client.util.Tools Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automate-client-java Show documentation
Show all versions of automate-client-java Show documentation
Java bindings for BrowserStack Automate REST API
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());
}
}