Java org.springframework.aop.support ComposablePointcut fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.aop.support ComposablePointcut fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.aop.support ComposablePointcut.

The text is from its open source code.

Constructor

ComposablePointcut(Pointcut pointcut)
Create a ComposablePointcut based on the given Pointcut.
ComposablePointcut(ClassFilter classFilter)
Create a ComposablePointcut for the given ClassFilter, with MethodMatcher.TRUE .
ComposablePointcut(MethodMatcher methodMatcher)
Create a ComposablePointcut for the given MethodMatcher, with ClassFilter.TRUE .
ComposablePointcut(ClassFilter classFilter, MethodMatcher methodMatcher)
Create a ComposablePointcut for the given ClassFilter and MethodMatcher.

Method

ComposablePointcutunion(ClassFilter other)
Apply a union with the given ClassFilter.
ComposablePointcutunion(MethodMatcher other)
Apply a union with the given MethodMatcher.
ComposablePointcutunion(Pointcut other)
Apply a union with the given Pointcut.