| java.lang.Object | |
| ↳ | org.springframework.aop.support.Pointcuts |
Pointcut constants for matching getters and setters, and static methods useful for manipulating and evaluating pointcuts. These methods are particularly useful for composing pointcuts using the union and intersection methods.
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| GETTERS | Pointcut matching all bean property getters, in any class | ||||||||||
| SETTERS | Pointcut matching all bean property setters, in any class | ||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Match all methods that both the given pointcuts match.
| |||||||||||
Perform the least expensive check for a pointcut match.
| |||||||||||
Match all methods that either (or both) of the given pointcuts matches.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Match all methods that both the given pointcuts match.
| pc1 | the first Pointcut |
|---|---|
| pc2 | the second Pointcut |
Perform the least expensive check for a pointcut match.
| pointcut | the pointcut to match |
|---|---|
| method | the candidate method |
| targetClass | the target class |
| args | arguments to the method |
Match all methods that either (or both) of the given pointcuts matches.
| pc1 | the first Pointcut |
|---|---|
| pc2 | the second Pointcut |