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

io.github.jzdayz.util.ReflectionUtil Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
package io.github.jzdayz.util;

import lombok.extern.slf4j.Slf4j;

@Slf4j
public class ReflectionUtil {

    public static Class forName(String className){
        try {
            return Class.forName(className);
        } catch (ClassNotFoundException e) {
            log.warn("Can not forName : "+className);
            return null;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy