Package com.formdev.flatlaf.util
Class StringUtils
- java.lang.Object
-
- com.formdev.flatlaf.util.StringUtils
-
public class StringUtils extends Object
Utility methods for strings.
-
-
Constructor Summary
Constructors Constructor Description StringUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isEmpty(String string)
Returnstrue
if given string isnull
or length is zero.static String
removeLeading(String string, String leading)
static String
removeTrailing(String string, String trailing)
static List<String>
split(String str, char delim)
-
-
-
Method Detail
-
isEmpty
public static boolean isEmpty(String string)
Returnstrue
if given string isnull
or length is zero.
-
-