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,
|
* Get an {@link Iterable} that can iterate over a class hierarchy in ascending (subclass to superclass) order,
|
||||||
* excluding interfaces.
|
* excluding interfaces.
|
||||||
*
|
*
|
||||||
* @param type
|
* @param type the type to get the class hierarchy from
|
||||||
* @return Iterable
|
* @return Iterable an Iterable over the class hierarchy of the given class
|
||||||
*/
|
*/
|
||||||
public static Iterable<Class<?>> hierarchy(final Class<?> type) {
|
public static Iterable<Class<?>> hierarchy(final Class<?> type) {
|
||||||
return hierarchy(type, Interfaces.EXCLUDE);
|
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.
|
* Get an {@link Iterable} that can iterate over a class hierarchy in ascending (subclass to superclass) order.
|
||||||
*
|
*
|
||||||
* @param type
|
* @param type the type to get the class hierarchy from
|
||||||
* @param interfacesBehavior
|
* @param interfacesBehavior switch indicating whether to include or exclude interfaces
|
||||||
* @return Iterable
|
* @return Iterable an Iterable over the class hierarchy of the given class
|
||||||
*/
|
*/
|
||||||
public static Iterable<Class<?>> hierarchy(final Class<?> type, Interfaces interfacesBehavior) {
|
public static Iterable<Class<?>> hierarchy(final Class<?> type, Interfaces interfacesBehavior) {
|
||||||
final Iterable<Class<?>> classes = new Iterable<Class<?>>() {
|
final Iterable<Class<?>> classes = new Iterable<Class<?>>() {
|
||||||
|
|
Loading…
Reference in New Issue