Package com.google.api.client.util
Class Strings
- java.lang.Object
-
- com.google.api.client.util.Strings
-
public final class Strings extends Object
Static utility methods pertaining toString
instances.NOTE: proxy for the Guava implementation of
Strings
.- Since:
- 1.14
- Author:
- Yaniv Inbar
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isNullOrEmpty(String string)
Returnstrue
if the given string is null or is the empty string.
-
-
-
Method Detail
-
isNullOrEmpty
public static boolean isNullOrEmpty(String string)
Returnstrue
if the given string is null or is the empty string.- Parameters:
string
- a string reference to check (may benull
)- Returns:
true
if the string is null or is the empty string
-
-