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

net.java.ao.builder.ClassUtils Maven / Gradle / Ivy

There is a newer version: 6.1.1
Show newest version
package net.java.ao.builder;

public final class ClassUtils
{
    private ClassUtils()
    {
    }

    public static Class loadClass(String className)
    {
        try
        {
            return ClassUtils.class.getClassLoader().loadClass(className);
        }
        catch (ClassNotFoundException ignored)
        {
            return null;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy