org.smart.data.repository.util.Objects Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smart-data-repository Show documentation
Show all versions of smart-data-repository Show documentation
ORM that simplifies database interactions.
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;
}
}