Uses of Class java.lang.IllegalMonitorStateException

Uses in package java.lang

Methods which throw type java.lang.IllegalMonitorStateException

void
Wakes up one of the Threads that has called wait on this Object.
void
Wakes up all of the Threads that have called wait on this Object.
void
Waits indefinitely for notify() or notifyAll() to be called on the Object in question.
void
Object.wait(long ms)
Waits a specified amount of time (or indefinitely if the time specified is 0) for someone to call notify() or notifyAll() on this Object, waking up this Thread.
void
Object.wait(long ms, int ns)
Waits a specified amount of time (or indefinitely if the time specified is 0) for someone to call notify() or notifyAll() on this Object, waking up this Thread.