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

org.jtwig.spring.boot.availability.IsClassPresent Maven / Gradle / Ivy

There is a newer version: 5.87.0.RELEASE
Show newest version
package org.jtwig.spring.boot.availability;

import org.springframework.util.ClassUtils;

public class IsClassPresent {
    public boolean isPresent(ClassLoader loader, String qualifiedName) {
        return ClassUtils.isPresent(qualifiedName, loader);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy