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

net.dongliu.commons.Cast Maven / Gradle / Ivy

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

import javax.annotation.Nullable;

/**
 * Method to do no-warning cast
 *
 * @author Liu Dong
 */
public class Cast {

    @SuppressWarnings("unchecked")
    public static  T to(@Nullable Object value) {
        return (T) value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy