cn.featherfly.common.lang.matcher.MethodGroupMatcher Maven / Gradle / Ivy
The newest version!
package cn.featherfly.common.lang.matcher;
import java.lang.reflect.Method;
import cn.featherfly.common.enums.Logic;
/**
*
* Method匹配组
*
*
* @author zhongj
*/
public class MethodGroupMatcher extends MemberGroupMatcher
implements MethodMatcher{
/**
*
*/
public MethodGroupMatcher() {
super();
}
/**
* @param logic logic
* @param matchers matchers
*/
public MethodGroupMatcher(Logic logic, MethodMatcher... matchers) {
super(logic, matchers);
}
/**
* @param matchers matchers
*/
public MethodGroupMatcher(MethodMatcher... matchers) {
super(matchers);
}
}