Uses of Interface
java.lang.StackWalker.StackFrame
-
Packages that use StackWalker.StackFrame Package Description java.lang Provides classes that are fundamental to the design of the Java programming language. -
-
Uses of StackWalker.StackFrame in java.lang
Method parameters in java.lang with type arguments of type StackWalker.StackFrame Modifier and Type Method Description void
StackWalker. forEach(Consumer<? super StackWalker.StackFrame> action)
Performs the given action on each element ofStackFrame
stream of the current thread, traversing from the top frame of the stack, which is the method calling thisforEach
method.<T> T
StackWalker. walk(Function<? super Stream<StackWalker.StackFrame>,? extends T> function)
Applies the given function to the stream ofStackFrame
s for the current thread, traversing from the top frame of the stack, which is the method calling thiswalk
method.
-