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

org.smart.data.repository.util.Objects Maven / Gradle / Ivy

There is a newer version: 4.0.14-RELEASE
Show newest version
package org.smart.data.repository.util;

/**
 * @author Ranzy Blessings (2017/04/23)
 */
public class Objects {

    public static boolean notNull(Object object){
        return (object != null);
    }

    public static boolean isNull(Object object){
        return (object == null);
    }

    public static boolean equals(Object a, Object b) {
        return a == b;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy