com.ui4j.bytebuddy.instrumentation.method.bytecode.bind.ParameterLengthResolver Maven / Gradle / Ivy
package com.ui4j.bytebuddy.instrumentation.method.bytecode.bind;
import com.ui4j.bytebuddy.instrumentation.method.MethodDescription;
/**
* This {@link com.ui4j.bytebuddy.instrumentation.method.bytecode.bind.MethodDelegationBinder.AmbiguityResolver} selects
* the method with more arguments. If two methods have equally many arguments, the resolution is ambiguous.
*/
public enum ParameterLengthResolver implements MethodDelegationBinder.AmbiguityResolver {
/**
* The singleton instance.
*/
INSTANCE;
@Override
public Resolution resolve(MethodDescription source,
MethodDelegationBinder.MethodBinding left,
MethodDelegationBinder.MethodBinding right) {
int leftLength = left.getTarget().getParameterTypes().size();
int rightLength = right.getTarget().getParameterTypes().size();
if (leftLength == rightLength) {
return Resolution.AMBIGUOUS;
} else if (leftLength < rightLength) {
return Resolution.RIGHT;
} else {
return Resolution.LEFT;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy