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

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

The 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 - 2025 Weber Informatics LLC | Privacy Policy