|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
public class Object
All classes extend this one, implicitly.
Constructor Summary | |
---|---|
Object()
|
Method Summary | |
---|---|
boolean |
equals(Object aOther)
|
Class |
getClass()
Returns null . |
int |
hashCode()
|
void |
notify()
Wake up one thread blocked on a wait(). |
void |
notifyAll()
Wake up all threads blocked on a wait(). |
String |
toString()
Returns the empty string. |
void |
wait()
This is the same as calling wait(0). |
void |
wait(long timeout)
Wait until notified. |
Constructor Detail |
---|
public Object()
Method Detail |
---|
public boolean equals(Object aOther)
public int hashCode()
public final void notify()
If multiple threads are waiting, higher priority threads will be woken in preference, otherwise the thread that gets woken is essentially random.
public final void notifyAll()
public final void wait() throws InterruptedException
InterruptedException
public final void wait(long timeout) throws InterruptedException
timeout
- maximum time in milliseconds to wait. Zero means forever.
InterruptedException
public String toString()
public final Class getClass()
null
. It's here to satisfy javac.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |