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 toStringinstances.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 booleanisNullOrEmpty(String string)Returnstrueif the given string is null or is the empty string.
-
-
-
Method Detail
-
isNullOrEmpty
public static boolean isNullOrEmpty(String string)
Returnstrueif the given string is null or is the empty string.- Parameters:
string- a string reference to check (may benull)- Returns:
trueif the string is null or is the empty string
-
-