org.jtwig.spring.boot.availability.IsClassPresent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtwig-spring-boot-starter Show documentation
Show all versions of jtwig-spring-boot-starter Show documentation
Jtwig jtwig-spring-boot-starter
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);
}
}