Uses of Class
org.apache.commons.lang3.reflect.MemberUtils.Executable
-
Packages that use MemberUtils.Executable Package Description org.apache.commons.lang3.reflect Accumulates common high-level uses of thejava.lang.reflect
APIs. -
-
Uses of MemberUtils.Executable in org.apache.commons.lang3.reflect
Methods in org.apache.commons.lang3.reflect that return MemberUtils.Executable Modifier and Type Method Description private static MemberUtils.Executable
MemberUtils.Executable. of(java.lang.reflect.Constructor<?> constructor)
private static MemberUtils.Executable
MemberUtils.Executable. of(java.lang.reflect.Method method)
Methods in org.apache.commons.lang3.reflect with parameters of type MemberUtils.Executable Modifier and Type Method Description private static int
MemberUtils. compareParameterTypes(MemberUtils.Executable left, MemberUtils.Executable right, java.lang.Class<?>[] actual)
Compares the relative fitness of two Executables in terms of how well they match a set of runtime parameter types, such that a list ordered by the results of the comparison would return the best match first (least).private static float
MemberUtils. getTotalTransformationCost(java.lang.Class<?>[] srcArgs, MemberUtils.Executable executable)
Returns the sum of the object transformation cost for each class in the source argument list.private static boolean
MemberUtils. isMatchingExecutable(MemberUtils.Executable method, java.lang.Class<?>[] parameterTypes)
-