public static enum ReflectionUtils.HierarchyTraversalMode extends java.lang.Enum<ReflectionUtils.HierarchyTraversalMode>
Enum Constant | Description |
---|---|
BOTTOM_UP |
Traverse the hierarchy using bottom-up semantics.
|
TOP_DOWN |
Traverse the hierarchy using top-down semantics.
|
Modifier and Type | Method | Description |
---|---|---|
static ReflectionUtils.HierarchyTraversalMode |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ReflectionUtils.HierarchyTraversalMode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReflectionUtils.HierarchyTraversalMode TOP_DOWN
public static final ReflectionUtils.HierarchyTraversalMode BOTTOM_UP
public static ReflectionUtils.HierarchyTraversalMode[] values()
for (ReflectionUtils.HierarchyTraversalMode c : ReflectionUtils.HierarchyTraversalMode.values()) System.out.println(c);
public static ReflectionUtils.HierarchyTraversalMode 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