Uses of Interface
java.lang.StackWalker.StackFrame
Package
Description
Provides classes that are fundamental to the design of the Java
programming language.
-
Uses of StackWalker.StackFrame in java.lang
Modifier and TypeMethodDescriptionvoid
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.