All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testifyproject.bytebuddy.implementation.bind.MethodNameEqualityResolver Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package org.testifyproject.bytebuddy.implementation.bind;

import org.testifyproject.bytebuddy.description.method.MethodDescription;

/**
 * Implementation of an
 * {@link org.testifyproject.bytebuddy.implementation.bind.MethodDelegationBinder.AmbiguityResolver}
 * that resolves conflicting bindings by considering equality of a target method's internalName as an indicator for a dominant
 * binding.
 * 

 

* For example, if method {@code source.foo} can be bound to methods {@code targetA.foo} and {@code targetB.bar}, * {@code targetA.foo} will be considered as dominant. */ public enum MethodNameEqualityResolver implements MethodDelegationBinder.AmbiguityResolver { /** * The singleton instance. */ INSTANCE; @Override public Resolution resolve(MethodDescription source, MethodDelegationBinder.MethodBinding left, MethodDelegationBinder.MethodBinding right) { boolean leftEquals = left.getTarget().getName().equals(source.getName()); boolean rightEquals = right.getTarget().getName().equals(source.getName()); if (leftEquals ^ rightEquals) { return leftEquals ? Resolution.LEFT : Resolution.RIGHT; } else { return Resolution.AMBIGUOUS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy