io.ebeaninternal.server.persist.DmlUtil Maven / Gradle / Ivy
package io.ebeaninternal.server.persist;
/**
* Utility object with helper methods for DML.
*/
public final class DmlUtil {
/**
* Return true if the value is null or a Numeric 0 (for primitive int's and long's) or Option empty.
*/
public static boolean isNullOrZero(Object value) {
return value == null || value instanceof Number && ((Number) value).longValue() == 0L;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy