|
DCT Lightfoot v3 API specification | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object
The object class is the base of the class hierarchy. All classes inherit from this class
| Constructor Summary | |
Object()
Create a new object |
|
| Method Summary | |
boolean |
equals(Object obj)
Is it equal |
Class |
getClass()
Get the class |
int |
hashCode()
Get the hash code |
void |
notify()
Notify another thread |
void |
notifyAll()
Notify all other threads |
java.lang.String |
toString()
Convert to a string |
void |
wait()
wait |
void |
wait(long timeout)
Wait for timeout milliseconds |
void |
wait(long timeout,
int ns)
Wait for timeout in ms and ns |
| Constructor Detail |
public Object()
| Method Detail |
public boolean equals(Object obj)
obj - The otherpublic final Class getClass()
public int hashCode()
public final void notify()
throws IllegalMonitorStateException
IllegalMonitorStateException - if the current thread does not own the monitor
public final void notifyAll()
throws IllegalMonitorStateException
IllegalMonitorStateException - if the current thread does not own the monitorpublic java.lang.String toString()
public final void wait()
throws IllegalMonitorStateException,
InterruptedException
IllegalMonitorStateException - if the current thread does not own the monitor
InterruptedException
public final void wait(long timeout)
throws IllegalMonitorStateException,
InterruptedException
timeout - The milliseconds to wait
IllegalMonitorStateException - if the current thread does not own the monitor
InterruptedException
public final void wait(long timeout,
int ns)
throws IllegalMonitorStateException,
InterruptedException
timeout - the milliseconds to waitns - the nanoseconds to wait
IllegalMonitorStateException - if the current thread does not own the monitor
InterruptedException
|
DCT Lightfoot v3 API specification | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||