Uses of Interface
com.sun.jdi.Value
Package
Description
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.
This package defines JDI events and event processing.
-
Uses of Value in com.sun.jdi
Modifier and TypeInterfaceDescriptioninterface
Provides access to an array object and its components in the target VM.interface
Provides access to a primitiveboolean
value in the target VM.interface
Provides access to a primitivebyte
value in the target VM.interface
Provides access to a primitivechar
value in the target VM.interface
A class loader object from the target VM.interface
An instance of java.lang.Class from the target VM.interface
Provides access to a primitivedouble
value in the target VM.interface
Provides access to a primitivefloat
value in the target VM.interface
Provides access to a primitiveint
value in the target VM.interface
Provides access to a primitivelong
value in the target VM.interface
A module in the target VM.interface
An object that currently exists in the target VM.interface
The value assigned to a field or variable of primitive type in a target VM.interface
Provides access to a primitiveshort
value in the target VM.interface
A string object from the target VM.interface
A thread group object from the target VM.interface
A thread object from the target VM.interface
Provides access to a primitivevoid
value in the target VM.Modifier and TypeMethodDescriptionArrayReference.getValue
(int index) Returns an array component value.Gets the value of a given instance or static field in this object.StackFrame.getValue
(LocalVariable variable) Gets theValue
of aLocalVariable
in this frame.ClassType.invokeMethod
(ThreadReference thread, Method method, List<? extends Value> arguments, int options) Invokes the specified staticMethod
in the target VM.default Value
InterfaceType.invokeMethod
(ThreadReference thread, Method method, List<? extends Value> arguments, int options) Invokes the specified staticMethod
in the target VM.ObjectReference.invokeMethod
(ThreadReference thread, Method method, List<? extends Value> arguments, int options) Invokes the specifiedMethod
on this object in the target VM.Modifier and TypeMethodDescriptionStackFrame.getArgumentValues()
Returns the values of all arguments in this frame.ArrayReference.getValues()
Returns all of the components in this array.ArrayReference.getValues
(int index, int length) Returns a range of array components.Gets the value of multiple instance and/or static fields in this object.StackFrame.getValues
(List<? extends LocalVariable> variables) Returns the values of multiple local variables in this frame.Modifier and TypeMethodDescriptionvoid
ThreadReference.forceEarlyReturn
(Value value) Force a method to return before it reaches a return statement.void
Replaces an array component with another value.void
Assigns a value to a static field.void
Sets the value of a given instance or static field in this object.void
StackFrame.setValue
(LocalVariable variable, Value value) Sets theValue
of aLocalVariable
in this frame.Modifier and TypeMethodDescriptionClassType.invokeMethod
(ThreadReference thread, Method method, List<? extends Value> arguments, int options) Invokes the specified staticMethod
in the target VM.default Value
InterfaceType.invokeMethod
(ThreadReference thread, Method method, List<? extends Value> arguments, int options) Invokes the specified staticMethod
in the target VM.ObjectReference.invokeMethod
(ThreadReference thread, Method method, List<? extends Value> arguments, int options) Invokes the specifiedMethod
on this object in the target VM.ClassType.newInstance
(ThreadReference thread, Method method, List<? extends Value> arguments, int options) Constructs a new instance of this type, using the given constructorMethod
in the target VM.void
Replaces a range of array components with other values.void
Replaces all array components with other values. -
Uses of Value in com.sun.jdi.event
Modifier and TypeMethodDescriptionMethodExitEvent.returnValue()
Returns the value that the method will return.WatchpointEvent.valueCurrent()
Current value of the field.ModificationWatchpointEvent.valueToBe()
Value that will be assigned to the field when the instruction completes.