public final class StringUtils extends Object
| Constructor and Description |
|---|
StringUtils() |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
containsWhitespace(String str)
Checks whether a string contains any whitespace characters or not.
|
static boolean |
secureCompare(String a,
String b)
Compares two strings for equality.
|
static String |
toSnakeCase(String str)
Converts the string to snake case.
|
public static boolean containsWhitespace(String str)
str - the string to check.true if the string contains any whitespace characters;
otherwise, false.public static boolean secureCompare(String a, String b)
a - one of the strings to compare.b - the other string to compare.Copyright © 2022. All rights reserved.