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

com.ulisesbocchio.jasyptspringboot.util.ClassUtils Maven / Gradle / Ivy

There is a newer version: 3.0.5
Show newest version
package com.ulisesbocchio.jasyptspringboot.util;

import org.springframework.core.ParameterizedTypeReference;
import org.springframework.core.ResolvableType;

public class ClassUtils {
    public static boolean isAssignable(ParameterizedTypeReference type, Class clazz) {
        return ResolvableType.forType(type).isAssignableFrom(clazz);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy