| Package | Description | 
|---|---|
| com.sun.jdi | This is the core package of the Java Debug
 Interface (JDI), it defines mirrors for values, types, and the target
 VirtualMachine itself - as well bootstrapping facilities. | 
| Modifier and Type | Method and Description | 
|---|---|
| List<Location> | Method. allLineLocations()Returns a list containing a  Locationobject for
 each executable source line in this method. | 
| List<Location> | ReferenceType. allLineLocations()Returns a list containing a  Locationobject
 for each executable source line in this reference type. | 
| List<Location> | Method. allLineLocations(String stratum,
                String sourceName)Returns a list containing a  Locationobject for
 each executable source line in this method. | 
| List<Location> | ReferenceType. allLineLocations(String stratum,
                String sourceName)Returns a list containing a  Locationobject
 for each executable source line in this reference type. | 
| List<LocalVariable> | Method. arguments()Returns a list containing each  LocalVariablethat is
 declared as an argument of this method. | 
| List<Location> | Method. locationsOfLine(int lineNumber)Returns a List containing all  Locationobjects
 that map to the given line number. | 
| List<Location> | ReferenceType. locationsOfLine(int lineNumber)Returns a List containing all  Locationobjects
 that map to the given line number. | 
| List<Location> | Method. locationsOfLine(String stratum,
               String sourceName,
               int lineNumber)Returns a List containing all  Locationobjects
 that map to the given line number and source name. | 
| List<Location> | ReferenceType. locationsOfLine(String stratum,
               String sourceName,
               int lineNumber)Returns a List containing all  Locationobjects
 that map to the given line number. | 
| String | ReferenceType. sourceDebugExtension()Get the source debug extension of this type. | 
| String | Location. sourceName()Gets an identifing name for the source corresponding to
 this location. | 
| String | ReferenceType. sourceName()Gets an identifying name for the source corresponding to the
 declaration of this type. | 
| String | Location. sourceName(String stratum)Gets an identifing name for the source corresponding to
 this location. | 
| List<String> | ReferenceType. sourceNames(String stratum)Gets the identifying names for all the source corresponding to the
 declaration of this type. | 
| String | Location. sourcePath()Gets the path to the source corresponding to this
 location. | 
| String | Location. sourcePath(String stratum)Gets the path to the source corresponding to this
 location. | 
| List<String> | ReferenceType. sourcePaths(String stratum)Gets the paths to the source corresponding to the
 declaration of this type. | 
| List<LocalVariable> | Method. variables()Returns a list containing each  LocalVariabledeclared
 in this method. | 
| List<LocalVariable> | Method. variablesByName(String name)Returns a list containing each  LocalVariableof a
 given name in this method. | 
| LocalVariable | StackFrame. visibleVariableByName(String name)Finds a  LocalVariablethat matches the given name and is
 visible at the current frame location. | 
| List<LocalVariable> | StackFrame. visibleVariables()Returns a list containing each  LocalVariablethat can be accessed from this frame's location. | 
 Copyright © 1999, 2025, Oracle and/or its affiliates.  All rights reserved.