| java.lang.Object | ||||
| ↳ | org.springframework.aop.support.StaticMethodMatcher | |||
| ↳ | org.springframework.aop.support.StaticMethodMatcherPointcut | |||
| ↳ | org.springframework.aop.support.AbstractRegexpMethodPointcut | |||
| ↳ | org.springframework.aop.support.JdkRegexpMethodPointcut | |||
Regular expression pointcut based on the java.util.regex package.
Supports the following JavaBean properties:
Note: the regular expressions must be a match. For example,
.*get.* will match com.mycom.Foo.getBar().
get.* will not.
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From interface
org.springframework.aop.MethodMatcher
| |||||||||||
From interface
org.springframework.aop.Pointcut
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Protected Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Initialize exclusion Pattern Patterns from the supplied
String[]. | |||||||||||
Initialize Pattern Patterns from the supplied
String[]. | |||||||||||
Returns
true if the Pattern at index patternIndex
matches the supplied candidate String. | |||||||||||
Returns
true if the exclusion Pattern at index patternIndex
matches the supplied candidate String. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
org.springframework.aop.support.AbstractRegexpMethodPointcut
| |||||||||||
From class
org.springframework.aop.support.StaticMethodMatcherPointcut
| |||||||||||
From class
org.springframework.aop.support.StaticMethodMatcher
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
org.springframework.aop.MethodMatcher
| |||||||||||
From interface
org.springframework.aop.Pointcut
| |||||||||||
Initialize exclusion Pattern Patterns from the supplied String[].
| excludedPatterns | the patterns to initialize |
|---|
| PatternSyntaxException |
|---|
Initialize Pattern Patterns from the supplied String[].
| patterns | the patterns to initialize |
|---|
| PatternSyntaxException |
|---|
Returns true if the Pattern at index patternIndex
matches the supplied candidate String.
| pattern | String pattern to match |
|---|---|
| patternIndex | index of pattern from 0 |
true if there is a match, else false.
Returns true if the exclusion Pattern at index patternIndex
matches the supplied candidate String.
| candidate | String pattern to match. |
|---|---|
| patternIndex | index of pattern starting from 0. |
true if there is a match, else false.