
com.crabshue.commons.aggregator.StringFunctions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-aggregator Show documentation
Show all versions of commons-aggregator Show documentation
Library aggregating fields using annotations in complex objects structures
The newest version!
package com.crabshue.commons.aggregator;
public class StringFunctions {
public static boolean isEmpty(String... values) {
for (String value : values)
if (value == null || value.isEmpty()) return true;
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy