Class StringUtils

    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static boolean isNullOrEmpty​(java.lang.String value)
      Checks if value is null or empty.
      static java.lang.String trimToNull​(java.lang.String value)
      Trims value if non-null, returning the trimmed value, or null if value was null or empty after trimming.
      • Methods inherited from class java.lang.Object

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

      • trimToNull

        public static java.lang.String trimToNull​(java.lang.String value)
        Trims value if non-null, returning the trimmed value, or null if value was null or empty after trimming.
        Parameters:
        value - Value to trim
        Returns:
        Trimmed string value, or null when null, or empty after trim.
        See Also:
        String.trim()
      • isNullOrEmpty

        public static boolean isNullOrEmpty​(java.lang.String value)
        Checks if value is null or empty.
        Parameters:
        value - value to test
        Returns:
        true if value is null or emoty, false for non-empty strings
        Since:
        6