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

com.mageddo.commons.StringUtils Maven / Gradle / Ivy

There is a newer version: 1.4.9
Show newest version
package com.mageddo.commons;

public final class StringUtils {

	private StringUtils() {
	}

	public static boolean isBlank(String s) {
		return s == null || s.trim().isEmpty();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy