|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
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 | |
---|---|
protected Object |
clone()
Create a copy of this object, using a shallow copy. |
boolean |
equals(Object aOther)
|
protected void |
finalize()
Deprecated. not implemented in leJOS |
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()
|
void |
wait()
This is the same as calling wait(0). |
void |
wait(long timeout)
Wait until notified. |
void |
wait(long timeout,
int nanos)
|
Constructor Detail |
---|
public Object()
Method Detail |
---|
protected Object clone() throws CloneNotSupportedException
CloneNotSupportedException
public boolean equals(Object aOther)
@Deprecated protected void finalize()
public final Class<?> getClass()
null
. It's here to satisfy javac.
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 String toString()
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 final void wait(long timeout, int nanos) throws InterruptedException
InterruptedException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |