All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.beust.jcommander.Strings Maven / Gradle / Ivy

The newest version!
package com.beust.jcommander;

public class Strings {
  public static boolean isStringEmpty(String s) {
    return s == null || "".equals(s);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy