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 com.liferay.portal.tools.rest.builder
Show all versions of com.liferay.portal.tools.rest.builder
Liferay Portal Tools REST Builder
package com.beust.jcommander;
public class Strings {
public static boolean isStringEmpty(String s) {
return s == null || "".equals(s);
}
}