com.mangopay.core.ObjectTool Maven / Gradle / Ivy
The newest version!
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.mangopay.core;
/**
*
* @author Hector Espert [email protected]
*/
public class ObjectTool {
public static boolean nonNull(Object object) {
return object != null;
}
public static boolean isNull(Object object) {
return object == null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy