public static enum ClassUtils.ClassSet extends Enum<ClassUtils.ClassSet>
| Enum Constant and Description |
|---|
ALL_CLASSES
Include all inherited classes (classes or interfaces)
|
CLASS_HIERARCHY
Include only the class hierarchy (interfaces are excluded)
|
INTERFACES
Include only the interfaces inherited from superclasses or implemented by the current class
|
| Modifier and Type | Method and Description |
|---|---|
static ClassUtils.ClassSet |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClassUtils.ClassSet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassUtils.ClassSet INTERFACES
public static final ClassUtils.ClassSet CLASS_HIERARCHY
public static final ClassUtils.ClassSet ALL_CLASSES
public static ClassUtils.ClassSet[] values()
for (ClassUtils.ClassSet c : ClassUtils.ClassSet.values()) System.out.println(c);
public static ClassUtils.ClassSet valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2006–2013. All rights reserved.