Skip to content
Snippets Groups Projects
Commit 917e1267 authored by Simon Barner's avatar Simon Barner
Browse files

GREEN

parent f6398930
No related branches found
No related tags found
1 merge request!50Add a isAssignableFromAny test for class objects
LambdaUtils.java 6fed9bb62eba3f7af6ebd7821fb22df6fcc507f8 YELLOW LambdaUtils.java 1e99ea0c7d036adb38449603421c484d8e015274 GREEN
...@@ -301,8 +301,9 @@ public class LambdaUtils { ...@@ -301,8 +301,9 @@ public class LambdaUtils {
} }
/** /**
* Checks whether the given object inherits from any of the given Classes, i.e. the check * Checks whether the given object inherits from any of the given {@link Class}es, i.e. the
* {@link Class#isAssignableFrom(Class)} is performed for each given class on the given Object. * check {@link Class#isAssignableFrom(Class)} is performed for each given class on the given
* {@link Class}.
* *
* @param types * @param types
* collection of classes to check inheritance. * collection of classes to check inheritance.
...@@ -315,8 +316,9 @@ public class LambdaUtils { ...@@ -315,8 +316,9 @@ public class LambdaUtils {
} }
/** /**
* Checks whether the given object inherits from any of the given Classes, i.e. the check * Checks whether the given object inherits from any of the given {@link Class}es, i.e. the
* {@link Class#isAssignableFrom(Class)} is performed for each given class on the given Object. * check {@link Class#isAssignableFrom(Class)} is performed for each given class on the given
* {@link Object}.
* *
* @param types * @param types
* collection of classes to check inheritance. * collection of classes to check inheritance.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment