@@ -1407,11 +1407,11 @@ private static Optional<Method> findMethod(Class<?> clazz, Predicate<Method> pre
1407
1407
1408
1408
for (Class <?> current = clazz ; isSearchable (current ); current = current .getSuperclass ()) {
1409
1409
// Search for match in current type
1410
- List <Method > methods = current .isInterface () ? getMethods (current ) : getDeclaredMethods ( current , BOTTOM_UP );
1411
- for ( Method method : methods ) {
1412
- if (predicate . test ( method )) {
1413
- return Optional . of ( method );
1414
- }
1410
+ List <Method > methods = current .isInterface () ? getMethods (current , predicate )
1411
+ : getDeclaredMethods ( current , predicate , BOTTOM_UP );
1412
+ if (! methods . isEmpty ( )) {
1413
+ // Since the predicate has already been applied, return the first match.
1414
+ return Optional . of ( methods . get ( 0 ));
1415
1415
}
1416
1416
1417
1417
// Search for match in interfaces implemented by current type
@@ -1506,8 +1506,8 @@ private static List<Method> findAllMethodsInHierarchy(Class<?> clazz, Predicate<
1506
1506
Preconditions .notNull (traversalMode , "HierarchyTraversalMode must not be null" );
1507
1507
1508
1508
// @formatter:off
1509
- List <Method > localMethods = getDeclaredMethods (clazz , traversalMode ).stream ()
1510
- .filter (predicate . and ( method -> !method .isSynthetic () ))
1509
+ List <Method > localMethods = getDeclaredMethods (clazz , predicate , traversalMode ).stream ()
1510
+ .filter (method -> !method .isSynthetic ())
1511
1511
.collect (toList ());
1512
1512
List <Method > superclassMethods = getSuperclassMethods (clazz , predicate , traversalMode ).stream ()
1513
1513
.filter (method -> !isMethodShadowedByLocalMethods (method , localMethods ))
@@ -1533,7 +1533,6 @@ private static List<Method> findAllMethodsInHierarchy(Class<?> clazz, Predicate<
1533
1533
/**
1534
1534
* Custom alternative to {@link Class#getFields()} that sorts the fields
1535
1535
* which match the supplied predicate and converts them to a mutable list.
1536
- * @param predicate the field filter; never {@code null}
1537
1536
*/
1538
1537
private static List <Field > getFields (Class <?> clazz , Predicate <Field > predicate ) {
1539
1538
return toSortedMutableList (clazz .getFields (), predicate );
@@ -1542,32 +1541,33 @@ private static List<Field> getFields(Class<?> clazz, Predicate<Field> predicate)
1542
1541
/**
1543
1542
* Custom alternative to {@link Class#getDeclaredFields()} that sorts the
1544
1543
* fields which match the supplied predicate and converts them to a mutable list.
1545
- * @param predicate the field filter; never {@code null}
1546
1544
*/
1547
1545
private static List <Field > getDeclaredFields (Class <?> clazz , Predicate <Field > predicate ) {
1548
1546
return toSortedMutableList (clazz .getDeclaredFields (), predicate );
1549
1547
}
1550
1548
1551
1549
/**
1552
1550
* Custom alternative to {@link Class#getMethods()} that sorts the methods
1553
- * and converts them to a mutable list.
1551
+ * which match the supplied predicate and converts them to a mutable list.
1554
1552
*/
1555
- private static List <Method > getMethods (Class <?> clazz ) {
1556
- return toSortedMutableList (clazz .getMethods ());
1553
+ private static List <Method > getMethods (Class <?> clazz , Predicate < Method > predicate ) {
1554
+ return toSortedMutableList (clazz .getMethods (), predicate );
1557
1555
}
1558
1556
1559
1557
/**
1560
1558
* Custom alternative to {@link Class#getDeclaredMethods()} that sorts the
1561
- * methods and converts them to a mutable list.
1559
+ * methods which match the supplied predicate and converts them to a mutable list.
1562
1560
*
1563
1561
* <p>In addition, the list returned by this method includes interface
1564
1562
* default methods which are either prepended or appended to the list of
1565
1563
* declared methods depending on the supplied traversal mode.
1566
1564
*/
1567
- private static List <Method > getDeclaredMethods (Class <?> clazz , HierarchyTraversalMode traversalMode ) {
1565
+ private static List <Method > getDeclaredMethods (Class <?> clazz , Predicate <Method > predicate ,
1566
+ HierarchyTraversalMode traversalMode ) {
1567
+
1568
1568
// Note: getDefaultMethods() already sorts the methods,
1569
- List <Method > defaultMethods = getDefaultMethods (clazz );
1570
- List <Method > declaredMethods = toSortedMutableList (clazz .getDeclaredMethods ());
1569
+ List <Method > defaultMethods = getDefaultMethods (clazz , predicate );
1570
+ List <Method > declaredMethods = toSortedMutableList (clazz .getDeclaredMethods (), predicate );
1571
1571
1572
1572
// Take the traversal mode into account in order to retain the inherited
1573
1573
// nature of interface default methods.
@@ -1584,23 +1584,23 @@ private static List<Method> getDeclaredMethods(Class<?> clazz, HierarchyTraversa
1584
1584
/**
1585
1585
* Get a sorted, mutable list of all default methods present in interfaces
1586
1586
* implemented by the supplied class which are also <em>visible</em> within
1587
- * the supplied class.
1587
+ * the supplied class and match the supplied predicate .
1588
1588
*
1589
1589
* @see <a href="https://docs.oracle.com/javase/specs/jls/se8/html/jls-6.html#d5e9652">Method Visibility</a>
1590
1590
* in the Java Language Specification
1591
1591
*/
1592
- private static List <Method > getDefaultMethods (Class <?> clazz ) {
1592
+ private static List <Method > getDefaultMethods (Class <?> clazz , Predicate < Method > predicate ) {
1593
1593
// @formatter:off
1594
1594
// Visible default methods are interface default methods that have not
1595
1595
// been overridden.
1596
1596
List <Method > visibleDefaultMethods = Arrays .stream (clazz .getMethods ())
1597
- .filter (Method ::isDefault )
1597
+ .filter (predicate . and ( Method ::isDefault ) )
1598
1598
.collect (toCollection (ArrayList ::new ));
1599
1599
if (visibleDefaultMethods .isEmpty ()) {
1600
1600
return visibleDefaultMethods ;
1601
1601
}
1602
1602
return Arrays .stream (clazz .getInterfaces ())
1603
- .map (ReflectionUtils :: getMethods )
1603
+ .map (ifc -> getMethods ( ifc , predicate ) )
1604
1604
.flatMap (List ::stream )
1605
1605
.filter (visibleDefaultMethods ::contains )
1606
1606
.collect (toCollection (ArrayList ::new ));
@@ -1617,9 +1617,10 @@ private static List<Field> toSortedMutableList(Field[] fields, Predicate<Field>
1617
1617
// @formatter:on
1618
1618
}
1619
1619
1620
- private static List <Method > toSortedMutableList (Method [] methods ) {
1620
+ private static List <Method > toSortedMutableList (Method [] methods , Predicate < Method > predicate ) {
1621
1621
// @formatter:off
1622
1622
return Arrays .stream (methods )
1623
+ .filter (predicate )
1623
1624
.sorted (ReflectionUtils ::defaultMethodSorter )
1624
1625
// Use toCollection() instead of toList() to ensure list is mutable.
1625
1626
.collect (toCollection (ArrayList ::new ));
@@ -1658,8 +1659,8 @@ private static List<Method> getInterfaceMethods(Class<?> clazz, Predicate<Method
1658
1659
for (Class <?> ifc : clazz .getInterfaces ()) {
1659
1660
1660
1661
// @formatter:off
1661
- List <Method > localInterfaceMethods = getMethods (ifc ).stream ()
1662
- .filter (predicate . and ( method -> !isAbstract (method ) ))
1662
+ List <Method > localInterfaceMethods = getMethods (ifc , predicate ).stream ()
1663
+ .filter (method -> !isAbstract (method ))
1663
1664
.collect (toList ());
1664
1665
1665
1666
List <Method > superinterfaceMethods = getInterfaceMethods (ifc , predicate , traversalMode ).stream ()
0 commit comments