public class SqlStringUtils extends Object
| Constructor and Description |
|---|
SqlStringUtils() |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
nullSafeEqualsIgnoreCase(String a,
String b)
Compares two strings for equality, ignoring case considerations, and safely handles null values.
|
static String |
removeEnclosingQuotes(String input)
Removes enclosing single or double quotes from the input string.
|
public static String removeEnclosingQuotes(String input)
input - the input stringpublic static boolean nullSafeEqualsIgnoreCase(String a, String b)
a - the first string to compare, may be nullb - the second string to compare, may be nulltrue if both strings are equal ignoring case, or both are null;
false otherwiseCopyright © 2016–2025. All rights reserved.