- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for MethodMap (0.04 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java
import java.util.LinkedList; import java.util.List; import java.util.Map; /** * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") class MethodMap { private static final int MORE_SPECIFIC = 0; private static final int LESS_SPECIFIC = 1; private static final int INCOMPARABLE = 2; /** * Keep track of all methods with the same name.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
/** * Cache of Methods, or CACHE_MISS, keyed by method * name and actual arguments used to find it. */ private final Map<String, Object> methodCache = new Hashtable<>(); private MethodMap methodMap = new MethodMap(); /** * Standard constructor * @param clazz The class. */ ClassMap(Class<?> clazz) { this.clazz = clazz; populateMethodCache(); } /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 13.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedCompositeBeanHelper.java
Map<String, MethodInfo> methodMap = new HashMap<>(); for (Method method : beanType.getMethods()) { if (!Modifier.isStatic(method.getModifiers()) && method.getParameterCount() == 1) { Type[] paramTypes = method.getGenericParameterTypes(); methodMap.putIfAbsent(method.getName(), new MethodInfo(method, paramTypes[0])); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 12 14:59:46 UTC 2025 - 12.3K bytes - Viewed (0) -
impl/maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar
String, Class[]); static void <clinit>(); } org/codehaus/plexus/util/introspection/MethodMap$AmbiguousException.class package org.codehaus.plexus.util.introspection; public synchronized class MethodMap$AmbiguousException extends Exception { public void MethodMap$AmbiguousException(); } org/codehaus/plexus/util/introspection/MethodMap.class package org.codehaus.plexus.util.introspection; public synchronized class MethodMap { private static final int MORE_SPECIFIC = 0; private static final int LESS_SPECIFIC...
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 164.6K 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)