Package com.iizix

Class StringUtils


  • public class StringUtils
    extends java.lang.Object
    String utilities.
    Author:
    Freggle, Christopher Mindus
    • Constructor Summary

      Constructors 
      ConstructorDescription
      StringUtils() 
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethodDescription
      static booleanisTrimmedEmpty​(java.lang.String s)
      Returns whether the string is null, empty or just contains whitespaces.
      • Methods inherited from class java.lang.Object

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

      • StringUtils

        public StringUtils()
    • Method Detail

      • isTrimmedEmpty

        public static boolean isTrimmedEmpty​(java.lang.String s)
        Returns whether the string is null, empty or just contains whitespaces.
        Parameters:
        s - The string to test.
        Returns:
        true if null, empty or just contains whitespaces.