Package com.amilesend.client.util
Class StringUtils
java.lang.Object
com.amilesend.client.util.StringUtils
Simple string utility methods.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
isBlank
(CharSequence cs) Determines if the given char sequence is blank.static boolean
isEmpty
(CharSequence cs) Determines if the given char sequence is empty.static boolean
Determines if the given char sequence is not blank.static boolean
Determines if the given char sequence is not empty.
-
Field Details
-
EMPTY
- See Also:
-
-
Method Details
-
isBlank
Determines if the given char sequence is blank.- Parameters:
cs
- the char sequence to evaluate- Returns:
true
if blank; else,false
-
isNotBlank
Determines if the given char sequence is not blank.- Parameters:
cs
- the char sequence to evaluate- Returns:
true
if not blank; else,false
-
isEmpty
Determines if the given char sequence is empty.- Parameters:
cs
- the char sequence to evaluate- Returns:
true
if empty; else,false
-
isNotEmpty
Determines if the given char sequence is not empty.- Parameters:
cs
- the char sequence to evaluate- Returns:
true
if not empty; else,false
-