Class StringUtils
java.lang.Object
com.amilesend.client.util.StringUtils
Simple string utility methods.
- 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptionstatic booleanisBlank(CharSequence cs) Determines if the given char sequence is blank.static booleanisEmpty(CharSequence cs) Determines if the given char sequence is empty.static booleanDetermines if the given char sequence is not blank.static booleanDetermines if the given char sequence is not empty.
- 
Field Details- 
EMPTY- See Also:
 
 
- 
- 
Method Details- 
isBlankDetermines if the given char sequence is blank.- Parameters:
- cs- the char sequence to evaluate
- Returns:
- trueif blank; else,- false
 
- 
isNotBlankDetermines if the given char sequence is not blank.- Parameters:
- cs- the char sequence to evaluate
- Returns:
- trueif not blank; else,- false
 
- 
isEmptyDetermines if the given char sequence is empty.- Parameters:
- cs- the char sequence to evaluate
- Returns:
- trueif empty; else,- false
 
- 
isNotEmptyDetermines if the given char sequence is not empty.- Parameters:
- cs- the char sequence to evaluate
- Returns:
- trueif not empty; else,- false
 
 
-