- All Implemented Interfaces:
Serializable,Comparable<GraphWalkerStackFrame.State>
- Enclosing class:
GraphWalkerStackFrame<V>
The types of methods available for dispatching.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionVisit an array next.Visit the member of an array next.Call beforeObject next.Visit a "normal" object next.Visit the field of a "normal" object next. -
Method Summary
Modifier and TypeMethodDescriptionstatic GraphWalkerStackFrame.StateReturns the enum constant of this type with the specified name.static GraphWalkerStackFrame.State[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
BEFORE_OBJECT
Call beforeObject next. -
ARRAY
Visit an array next. -
ARRAY_MEMBER
Visit the member of an array next. -
CLASS
Visit a "normal" object next. -
CLASS_FIELD
Visit the field of a "normal" object next.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-