Module java.base
Package java.lang

Enum Class StackWalker.Option

java.lang.Object
java.lang.Enum<StackWalker.Option>
java.lang.StackWalker.Option
All Implemented Interfaces:
Serializable, Comparable<StackWalker.Option>, Constable
Enclosing class:
StackWalker

public static enum StackWalker.Option extends Enum<StackWalker.Option>
Selects what type of stack and method information is provided by the StackWalker
  • Enum Constant Details

    • RETAIN_CLASS_REFERENCE

      public static final StackWalker.Option RETAIN_CLASS_REFERENCE
      Allow clients to obtain a method's Class object.
    • SHOW_REFLECT_FRAMES

      public static final StackWalker.Option SHOW_REFLECT_FRAMES
      Include stack frames for reflection methods.
    • SHOW_HIDDEN_FRAMES

      public static final StackWalker.Option 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

      public static StackWalker.Option[] 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

      public static StackWalker.Option valueOf(String name)
      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 name
      NullPointerException - if the argument is null