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

top.cutexingluo.tools.designtools.method.BaseMethod Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
package top.cutexingluo.tools.designtools.method;

import java.lang.reflect.InvocationTargetException;

/**
 * @author XingTian
 * @version 1.0.0
 * @date 2023/2/2 18:41
 */
public interface BaseMethod {
     Object invoke(T item, Object... values) throws NoSuchMethodException, InvocationTargetException, IllegalAccessException;
     Object invoke(T item) throws NoSuchMethodException, InvocationTargetException, IllegalAccessException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy