public interface AcceptedPatternsChecker
| Modifier and Type | Interface and Description | 
|---|---|
static class  | 
AcceptedPatternsChecker.IsAccepted  | 
| Modifier and Type | Method and Description | 
|---|---|
Set<Pattern> | 
getAcceptedPatterns()
Allow access list of all defined excluded patterns 
 | 
AcceptedPatternsChecker.IsAccepted | 
isAccepted(String value)
Checks if value matches any of patterns on exclude list 
 | 
void | 
setAcceptedPatterns(Set<String> patterns)
Sets excluded patterns during runtime 
 | 
void | 
setAcceptedPatterns(String commaDelimitedPatterns)
Sets excluded patterns during runtime 
 | 
void | 
setAcceptedPatterns(String[] patterns)
Set excluded patterns during runtime 
 | 
AcceptedPatternsChecker.IsAccepted isAccepted(String value)
value - to checkvoid setAcceptedPatterns(String commaDelimitedPatterns)
commaDelimitedPatterns - comma delimited string with patternsvoid setAcceptedPatterns(String[] patterns)
patterns - array of additional excluded patternsvoid setAcceptedPatterns(Set<String> patterns)
patterns - set of additional patternsCopyright © 2000–2020 Apache Software Foundation. All rights reserved.