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

cn.featherfly.common.lang.matcher.FieldNameRegexMatcher Maven / Gradle / Ivy

The newest version!

package cn.featherfly.common.lang.matcher;

import java.lang.reflect.Field;

/**
 * 

* 正则匹配Field名称的实现 *

* @author zhongj */ public class FieldNameRegexMatcher extends MemberNameRegexMatcher implements FieldMatcher { /** * * @param nameRegex 名称匹配的正则表达式(使用大小写敏感模式) */ public FieldNameRegexMatcher(String nameRegex) { super(nameRegex); } /** * * @param nameRegex 名称匹配的正则表达式 * @param flags 正则模式 */ public FieldNameRegexMatcher(String nameRegex, int flags) { super(nameRegex, flags); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy