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

org.springframework.util.ReflectionUtils Maven / Gradle / Ivy

Go to download

This module create facades for all the APIs (classes, interfaces and annotations) that are use in the test code. The objective is to avoid the needed to download all the framework supported by the static analyzer.

The newest version!
package org.springframework.util;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.sql.SQLException;

public abstract class ReflectionUtils {

    public static Method findMethod(Class clazz, String name) {
        return null;
    }

    public static Method findMethod(Class clazz, String name, Class... paramTypes) { return null; }

    public static Object invokeMethod(Method method, Object target) {
        return invokeMethod(method, target, new Object[0]);
    }

    public static Object invokeMethod(Method method, Object target, Object... args) {
        return null;
    }

    public static Object invokeJdbcMethod(Method method, Object target) throws SQLException {
        return null;
    }

    public static Object invokeJdbcMethod(Method method, Object target, Object... args) throws SQLException {
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy