org.codehaus.jackson.mrbean
public class BeanUtil extends Object
Constructor and Description |
---|
BeanUtil() |
Modifier and Type | Method and Description |
---|---|
static List<Class<?>> |
findSuperTypes(Class<?> cls,
Class<?> endBefore)
Method that will find all sub-classes and implemented interfaces
of a given class or interface.
|
static List<Class<?>> |
findSuperTypes(Class<?> cls,
Class<?> endBefore,
List<Class<?>> result) |
protected static boolean |
isConcrete(Member member) |
protected static boolean isConcrete(Member member)
public static List<Class<?>> findSuperTypes(Class<?> cls, Class<?> endBefore)
Object.class
is not included in the list
regardless of whether endBefore
argument is defined or not.endBefore
- Super-type to NOT include in results, if any; when
encountered, will be ignored (and no super types are checked).