Class StringUtils


  • @Deprecated
    public final class StringUtils
    extends java.lang.Object
    Deprecated.
    A utility class to ease string processing.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private StringUtils()
      Deprecated.
       
    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static boolean isEmpty​(java.lang.String string)
      Deprecated.
      use org.apache.commons.lang3.StringUtils.isEmpty() instead
      • Methods inherited from class java.lang.Object

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

      • StringUtils

        private StringUtils()
        Deprecated.
    • Method Detail

      • isEmpty

        public static boolean isEmpty​(java.lang.String string)
        Deprecated.
        use org.apache.commons.lang3.StringUtils.isEmpty() instead
        Checks whether a string is null or of zero length.
        Parameters:
        string - The string to check, may be null.
        Returns:
        true if the string is null or of zero length, false otherwise.