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 booleanisEmpty(String string)Returnstrueif given string isnullor length is zero.static StringremoveLeading(String string, String leading)static StringremoveTrailing(String string, String trailing)static List<String>split(String str, char delim)
-
-
-
Method Detail
-
isEmpty
public static boolean isEmpty(String string)
Returnstrueif given string isnullor length is zero.
-
-