Add missing JavaDoc
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1531426 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b2ad5e80bb
commit
965096e21c
|
@ -1140,8 +1140,8 @@ public class ClassUtils {
|
|||
* Get an {@link Iterable} that can iterate over a class hierarchy in ascending (subclass to superclass) order,
|
||||
* excluding interfaces.
|
||||
*
|
||||
* @param type
|
||||
* @return Iterable
|
||||
* @param type the type to get the class hierarchy from
|
||||
* @return Iterable an Iterable over the class hierarchy of the given class
|
||||
*/
|
||||
public static Iterable<Class<?>> hierarchy(final Class<?> type) {
|
||||
return hierarchy(type, Interfaces.EXCLUDE);
|
||||
|
@ -1150,9 +1150,9 @@ public class ClassUtils {
|
|||
/**
|
||||
* Get an {@link Iterable} that can iterate over a class hierarchy in ascending (subclass to superclass) order.
|
||||
*
|
||||
* @param type
|
||||
* @param interfacesBehavior
|
||||
* @return Iterable
|
||||
* @param type the type to get the class hierarchy from
|
||||
* @param interfacesBehavior switch indicating whether to include or exclude interfaces
|
||||
* @return Iterable an Iterable over the class hierarchy of the given class
|
||||
*/
|
||||
public static Iterable<Class<?>> hierarchy(final Class<?> type, Interfaces interfacesBehavior) {
|
||||
final Iterable<Class<?>> classes = new Iterable<Class<?>>() {
|
||||
|
|
Loading…
Reference in New Issue