Uses of Class
org.apache.commons.jexl3.internal.introspection.MethodKey
-
Packages that use MethodKey Package Description org.apache.commons.jexl3.internal.introspection Provides low-level introspective services. -
-
Uses of MethodKey in org.apache.commons.jexl3.internal.introspection
Fields in org.apache.commons.jexl3.internal.introspection declared as MethodKey Modifier and Type Field Description protected MethodKey
AbstractExecutor.Method. key
The method key discovered from the arguments.Fields in org.apache.commons.jexl3.internal.introspection with type parameters of type MethodKey Modifier and Type Field Description private java.util.Map<MethodKey,java.lang.reflect.Method>
ClassMap. byKey
This is the cache to store and look up the method information.private java.util.Map<MethodKey,java.lang.reflect.Constructor<?>>
Introspector. constructorsMap
Holds the map of classes ctors we know about as well as unknown ones.Methods in org.apache.commons.jexl3.internal.introspection with parameters of type MethodKey Modifier and Type Method Description java.lang.reflect.Constructor<?>
Introspector. getConstructor(java.lang.Class<?> c, MethodKey key)
Gets the constructor defined by theMethodKey
.java.lang.reflect.Constructor<?>
Introspector. getConstructor(MethodKey key)
Gets the constructor defined by theMethodKey
.(package private) java.lang.reflect.Method
ClassMap. getMethod(MethodKey methodKey)
Find a Method using the method name and parameter objects.java.lang.reflect.Method
Introspector. getMethod(java.lang.Class<?> c, MethodKey key)
Gets the method defined by theMethodKey
for the classc
.java.lang.reflect.Method
Uberspect. getMethod(java.lang.Class<?> c, MethodKey key)
Gets the method defined bykey
and for the Classc
.Constructors in org.apache.commons.jexl3.internal.introspection with parameters of type MethodKey Constructor Description Method(java.lang.Class<?> c, java.lang.reflect.Method m, MethodKey k)
Creates a new instance.MethodExecutor(java.lang.Class<?> c, java.lang.reflect.Method m, MethodKey k)
Creates a new instance.
-