- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for AmbiguousException (0.98 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java
* @return the most specific applicable method, or null if no * method is applicable. * @throws AmbiguousException if there is more than one maximally * specific applicable method */ Method find(String methodName, Object... args) throws AmbiguousException { List<Method> methodList = get(methodName); if (methodList == null) { return null;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 14.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java
* @param name Method name. * @param params Method parameters. * @return The found method. * @throws MethodMap.AmbiguousException in case of duplicate methods. */ public Method findMethod(String name, Object... params) throws MethodMap.AmbiguousException { String methodKey = makeMethodKey(name, params); Object cacheEntry = methodCache.get(methodKey);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 13.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java
import java.util.Optional; import java.util.WeakHashMap; import org.apache.maven.api.annotations.Nonnull; import org.apache.maven.api.annotations.Nullable; import org.apache.maven.model.interpolation.reflection.MethodMap.AmbiguousException; /** * Using simple dotted expressions to extract the values from an Object instance using JSP-like expressions * such as {@code project.build.sourceDirectory}. * <p>Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 10.8K bytes - Viewed (0)