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

com.flyfish.oauth.utils.CastUtils Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package com.flyfish.oauth.utils;

public abstract class CastUtils {

    @SuppressWarnings("unchecked")
    public static  T cast(R source) {
        return (T) source;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy