|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.cayenne.tools.NamePatternMatcher
public class NamePatternMatcher
Provides name pattern matching functionality.
Field Summary | |
---|---|
protected Pattern[] |
itemExcludeFilters
|
protected Pattern[] |
itemIncludeFilters
|
protected org.apache.cayenne.tools.ILog |
logger
|
Constructor Summary | |
---|---|
NamePatternMatcher(org.apache.cayenne.tools.ILog parentTask,
String includePattern,
String excludePattern)
|
Method Summary | |
---|---|
Pattern[] |
createPatterns(String patternString)
Returns an array of Patterns. |
protected List |
filter(List items)
Applies preconfigured list of filters to the list, removing entities that do not pass the filter. |
protected boolean |
passedExcludeFilter(CayenneMapEntry item)
Returns true if the entity does not match any one of the "exclude" patterns, or if there is no "exclude" patterns defined. |
protected boolean |
passedIncludeFilter(CayenneMapEntry item)
Returns true if the entity matches any one of the "include" patterns, or if there is no "include" patterns defined. |
static String |
replaceWildcardInStringWithString(String wildcard,
String pattern,
String replacement)
|
String[] |
tokenizePattern(String pattern)
Returns an array of valid regular expressions. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected org.apache.cayenne.tools.ILog logger
protected Pattern[] itemIncludeFilters
protected Pattern[] itemExcludeFilters
Constructor Detail |
---|
public NamePatternMatcher(org.apache.cayenne.tools.ILog parentTask, String includePattern, String excludePattern)
Method Detail |
---|
public Pattern[] createPatterns(String patternString)
"billing_*,user?"
will become an array of two expressions:
^billing_.*$
^user.?$
public String[] tokenizePattern(String pattern)
"billing_*,user?"
will become an array of two expressions:
^billing_.*$
^user.?$
protected List filter(List items)
protected boolean passedIncludeFilter(CayenneMapEntry item)
protected boolean passedExcludeFilter(CayenneMapEntry item)
public static String replaceWildcardInStringWithString(String wildcard, String pattern, String replacement)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |