Uses of Class
net.bytebuddy.implementation.MethodDelegation.WithCustomProperties
Packages that use MethodDelegation.WithCustomProperties
Package
Description
The implementation package contains any logic for intercepting method calls.
-
Uses of MethodDelegation.WithCustomProperties in net.bytebuddy.implementation
Methods in net.bytebuddy.implementation that return MethodDelegation.WithCustomPropertiesModifier and TypeMethodDescriptionMethodDelegation.WithCustomProperties.filter
(ElementMatcher<? super MethodDescription> matcher) Configures this method delegation to only consider methods or constructors as a delegation target if they match the supplied matcher.MethodDelegation.WithCustomProperties.withBinders
(List<? extends TargetMethodAnnotationDrivenBinder.ParameterBinder<?>> parameterBinders) Configures this method delegation to use the supplied parameter binders when deciding what value to assign to a parameter of a delegation target.MethodDelegation.WithCustomProperties.withBinders
(TargetMethodAnnotationDrivenBinder.ParameterBinder<?>... parameterBinder) Configures this method delegation to use the supplied parameter binders when deciding what value to assign to a parameter of a delegation target.MethodDelegation.WithCustomProperties.withBindingResolver
(MethodDelegationBinder.BindingResolver bindingResolver) Configures a custom binding resolver which is responsible for choosing a method binding among multiple candidates.MethodDelegation.withDefaultConfiguration()
Creates a configuration builder for a method delegation that is pre-configured with the ambiguity resolvers defined byMethodDelegationBinder.AmbiguityResolver.DEFAULT
and the parameter binders defined byTargetMethodAnnotationDrivenBinder.ParameterBinder.DEFAULTS
.MethodDelegation.withEmptyConfiguration()
Creates a configuration builder for a method delegation that does not apply any pre-configuredMethodDelegationBinder.AmbiguityResolver
s orTargetMethodAnnotationDrivenBinder.ParameterBinder
s.MethodDelegation.WithCustomProperties.withResolvers
(List<? extends MethodDelegationBinder.AmbiguityResolver> ambiguityResolvers) Configures this method delegation to use the supplied ambiguity resolvers when deciding which out of two ore more legal delegation targets should be considered.MethodDelegation.WithCustomProperties.withResolvers
(MethodDelegationBinder.AmbiguityResolver... ambiguityResolver) Configures this method delegation to use the supplied ambiguity resolvers when deciding which out of two ore more legal delegation targets should be considered.