public static enum ClassInfo.SearchType extends java.lang.Enum<ClassInfo.SearchType>
| Enum Constant and Description |
|---|
ALL_CLASSES
Include this class when searching in the hierarchy
|
SUPER_CLASSES_ONLY
Only walk the superclasses when searching the hierarchy
|
| Modifier and Type | Method and Description |
|---|---|
static ClassInfo.SearchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClassInfo.SearchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassInfo.SearchType ALL_CLASSES
public static final ClassInfo.SearchType SUPER_CLASSES_ONLY
public static ClassInfo.SearchType[] values()
for (ClassInfo.SearchType c : ClassInfo.SearchType.values()) System.out.println(c);
public static ClassInfo.SearchType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null