This commit is contained in:
Gary Gregory 2020-02-14 09:33:00 -05:00
parent 474ab7f5f1
commit 31e726e471
1 changed files with 9 additions and 4 deletions

View File

@ -50,7 +50,12 @@ public class ClassUtils {
* @since 3.2
*/
public enum Interfaces {
INCLUDE, EXCLUDE
/** Includes interfaces. */
INCLUDE,
/** Excludes interfaces. */
EXCLUDE
}
/**
@ -598,7 +603,7 @@ public class ClassUtils {
}
/**
* Get the interfaces for the specified class.
* Gets the interfaces for the specified class.
*
* @param cls the class to look up, may be {@code null}
* @param interfacesFound the {@code Set} of interfaces for the class
@ -1468,7 +1473,7 @@ public class ClassUtils {
}
/**
* Get an {@link Iterable} that can iterate over a class hierarchy in ascending (subclass to superclass) order,
* Gets an {@link Iterable} that can iterate over a class hierarchy in ascending (subclass to superclass) order,
* excluding interfaces.
*
* @param type the type to get the class hierarchy from
@ -1480,7 +1485,7 @@ public class ClassUtils {
}
/**
* Get an {@link Iterable} that can iterate over a class hierarchy in ascending (subclass to superclass) order.
* Gets an {@link Iterable} that can iterate over a class hierarchy in ascending (subclass to superclass) order.
*
* @param type the type to get the class hierarchy from
* @param interfacesBehavior switch indicating whether to include or exclude interfaces