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