List of utility methods to do CharSequence Empty Check
boolean | isEmpty(CharSequence text) is Empty if (text != null) return isEmpty(text.toString()); return true; |
boolean | isNotEmpty(final CharSequence cs) is Not Empty return !isEmpty(cs);
|
boolean | isEmpty(final CharSequence cs) is Empty return cs == null || cs.length() == 0;
|
boolean | isEmpty(CharSequence arg) is Empty return arg == null || arg.length() == 0;
|