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

net.dongliu.commons.lang.Requires Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
package net.dongliu.commons.lang;

/**
 * @author Dong Liu
 */
public class Requires {

    /**
     * if o is null, throw nullPointerException; else return o
     */
    public static  T notNull(T o) {
        if (o == null) {
            throw new NullPointerException();
        }
        return o;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy