Uses of Class
com.sun.jdi.IncompatibleThreadStateException
Packages that use IncompatibleThreadStateException
包
描述
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.
-
Uses of IncompatibleThreadStateException in com.sun.jdi
Methods in com.sun.jdi that throw IncompatibleThreadStateException修饰符和类方法描述ThreadReference.currentContendedMonitor()Returns anObjectReferencefor the monitor, if any, for which this thread is currently waiting.intObjectReference.entryCount()Returns the number times this object's monitor has been entered by the current owning thread.voidThreadReference.forceEarlyReturn(Value value) Force a method to return before it reaches a return statement.ThreadReference.frame(int index) Returns theStackFrameat the given index in the thread's current call stack.intThreadReference.frameCount()Returns the number of stack frames in the thread's current call stack.ThreadReference.frames()Returns a List containing eachStackFramein the thread's current call stack.ThreadReference.frames(int start, int length) Returns a List containing a range ofStackFramemirrors from the thread's current call stack.ClassType.invokeMethod(ThreadReference thread, Method method, List<? extends Value> arguments, int options) Invokes the specified staticMethodin the target VM.default ValueInterfaceType.invokeMethod(ThreadReference thread, Method method, List<? extends Value> arguments, int options) Invokes the specified staticMethodin the target VM.ObjectReference.invokeMethod(ThreadReference thread, Method method, List<? extends Value> arguments, int options) Invokes the specifiedMethodon 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 constructorMethodin the target VM.ThreadReference.ownedMonitors()Returns a List containing anObjectReferencefor each monitor owned by the thread.ThreadReference.ownedMonitorsAndFrames()Returns a List containing aMonitorInfoobject for each monitor owned by the thread.ObjectReference.owningThread()Returns anThreadReferencefor the thread, if any, which currently owns this object's monitor.voidThreadReference.popFrames(StackFrame frame) Pop stack frames.ObjectReference.waitingThreads()Returns a List containing aThreadReferencefor each thread currently waiting for this object's monitor.