Class TextUtils


  • public final class TextUtils
    extends java.lang.Object
    Since:
    4.3
    • Constructor Summary

      Constructors 
      Constructor Description
      TextUtils()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static boolean containsBlanks​(java.lang.CharSequence s)  
      static boolean isBlank​(java.lang.CharSequence s)
      Returns true if the parameter is null or contains only whitespace
      static boolean isEmpty​(java.lang.CharSequence s)
      Returns true if the parameter is null or of zero length
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • TextUtils

        public TextUtils()
    • Method Detail

      • isEmpty

        public static boolean isEmpty​(java.lang.CharSequence s)
        Returns true if the parameter is null or of zero length
      • isBlank

        public static boolean isBlank​(java.lang.CharSequence s)
        Returns true if the parameter is null or contains only whitespace
      • containsBlanks

        public static boolean containsBlanks​(java.lang.CharSequence s)
        Since:
        4.4