Package org.eclipse.aether.util
Class StringUtils
- java.lang.Object
-
- org.eclipse.aether.util.StringUtils
-
@Deprecated public final class StringUtils extends java.lang.ObjectDeprecated.A utility class to ease string processing.
-
-
Constructor Summary
Constructors Modifier Constructor Description privateStringUtils()Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static booleanisEmpty(java.lang.String string)Deprecated.useorg.apache.commons.lang3.StringUtils.isEmpty()instead
-
-
-
Method Detail
-
isEmpty
public static boolean isEmpty(java.lang.String string)
Deprecated.useorg.apache.commons.lang3.StringUtils.isEmpty()insteadChecks whether a string isnullor of zero length.- Parameters:
string- The string to check, may benull.- Returns:
trueif the string isnullor of zero length,falseotherwise.
-
-