Interface MethodExitEvent

All Superinterfaces:
Event, Locatable, LocatableEvent, Mirror
public interface MethodExitEvent extends LocatableEvent
Notification of a method return in the target VM. This event is generated after all code in the method has executed, but the location of this event is the last executed location in the method. Method exit events are generated for both native and non-native methods. Method exit events are not generated if the method terminates with a thrown exception.
Since:
1.3
See Also:

Method Summary

Modifier and Type Method Description
Method method()
Returns the method that was exited.
Value returnValue()
Returns the value that the method will return.

Methods declared in interface com.sun.jdi.event.Event

request

Methods declared in interface com.sun.jdi.Locatable

location

Methods declared in interface com.sun.jdi.event.LocatableEvent

thread

Methods declared in interface com.sun.jdi.Mirror

toString, virtualMachine

Method Details

method

Method method()
Returns the method that was exited.
Returns:
a Method which mirrors the method that was exited.
Throws:
ObjectCollectedException - may be thrown if class has been garbage collected.

returnValue

Value returnValue()
Returns the value that the method will return. Not all target virtual machines support this operation. Use canGetMethodReturnValues() to determine if this operation is supported.
Returns:
a Value which mirrors the value to be returned.
Throws:
UnsupportedOperationException - if the target virtual machine does not support this operation - see canGetMethodReturnValues()
Since:
1.6

© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/jdk.jdi/com/sun/jdi/event/MethodExitEvent.html