Package net.bytebuddy.matcher
Class MethodParameterTypesMatcher<T extends ParameterList<?>>
java.lang.Object
net.bytebuddy.matcher.ElementMatcher.Junction.AbstractBase<T>
net.bytebuddy.matcher.MethodParameterTypesMatcher<T>
- Type Parameters:
T
- The type of the matched entity.
- All Implemented Interfaces:
ElementMatcher<T>
,ElementMatcher.Junction<T>
@Enhance
public class MethodParameterTypesMatcher<T extends ParameterList<?>>
extends ElementMatcher.Junction.AbstractBase<T>
An element matcher that matches a method's parameter types.
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.bytebuddy.matcher.ElementMatcher
ElementMatcher.Junction<S>
Nested classes/interfaces inherited from interface net.bytebuddy.matcher.ElementMatcher.Junction
ElementMatcher.Junction.AbstractBase<V>, ElementMatcher.Junction.Conjunction<W>, ElementMatcher.Junction.Disjunction<W>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ElementMatcher<? super List<? extends TypeDescription.Generic>>
The matcher to apply to the type of the parameter. -
Constructor Summary
ConstructorsConstructorDescriptionMethodParameterTypesMatcher
(ElementMatcher<? super List<? extends TypeDescription.Generic>> matcher) Creates a new matcher for a method's parameter types. -
Method Summary
Methods inherited from class net.bytebuddy.matcher.ElementMatcher.Junction.AbstractBase
and, or
-
Field Details
-
matcher
The matcher to apply to the type of the parameter.
-
-
Constructor Details
-
MethodParameterTypesMatcher
public MethodParameterTypesMatcher(ElementMatcher<? super List<? extends TypeDescription.Generic>> matcher) Creates a new matcher for a method's parameter types.- Parameters:
matcher
- The matcher to apply to the type of the parameter.
-
-
Method Details