Class StringUtils


  • public final class StringUtils
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      StringUtils()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static boolean containsWhitespace​(java.lang.String str)
      Checks whether a string contains any whitespace characters or not.
      static boolean secureCompare​(java.lang.String a, java.lang.String b)
      Compares two strings for equality.
      static java.lang.String toSnakeCase​(java.lang.String str)
      Converts the string to snake case.
      • 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

      • containsWhitespace

        public static boolean containsWhitespace​(java.lang.String str)
        Checks whether a string contains any whitespace characters or not.
        Parameters:
        str - the string to check.
        Returns:
        true if the string contains any whitespace characters; otherwise, false.
      • secureCompare

        public static boolean secureCompare​(java.lang.String a,
                                            java.lang.String b)
        Compares two strings for equality. The time taken is independent of the number of characters that match.
        Parameters:
        a - one of the strings to compare.
        b - the other string to compare.
        Returns:
        true if the strings are equal, false otherwise.
      • toSnakeCase

        public static java.lang.String toSnakeCase​(java.lang.String str)
        Converts the string to snake case.
        Parameters:
        str - the string to convert.
        Returns:
        A string with the contents of the input string converted to snake case.