- All Implemented Interfaces:
Serializable
,Comparable<StackWalker.Option>
,Constable
- Enclosing class:
- StackWalker
Selects what type of stack and method information is provided by the
StackWalker
-
Nested Class Summary
Nested classes/interfaces declared in class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAllow clients to obtain a method's Class object.Include stack frames for reflection methods, as well as JVM special stack frames, such as frames for anonymous classes.Include stack frames for reflection methods. -
Method Summary
Modifier and TypeMethodDescriptionstatic StackWalker.Option
Returns the enum constant of this class with the specified name.static StackWalker.Option[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RETAIN_CLASS_REFERENCE
Allow clients to obtain a method's Class object. -
SHOW_REFLECT_FRAMES
Include stack frames for reflection methods. -
SHOW_HIDDEN_FRAMES
Include stack frames for reflection methods, as well as JVM special stack frames, such as frames for anonymous classes.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-