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

com.lyncode.jtwig.functions.util.ClassUtils Maven / Gradle / Ivy

The newest version!
package com.lyncode.jtwig.functions.util;

public class ClassUtils {
    public static boolean classExists (ClassLoader classLoader, String className) {
        try {
            Class.forName(className, false, classLoader);
            return true;
        } catch (ClassNotFoundException e) {
            return false;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy