com.beust.jcommander.Strings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcommander Show documentation
Show all versions of jcommander Show documentation
Command line parsing library for Java
package com.beust.jcommander;
public class Strings {
public static boolean isStringEmpty(String s) {
return s == null || "".equals(s);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy