Constructors
Name | Description |
---|---|
Object() |
Methods
Name | Description |
---|---|
clone() | Creates a new object of the same class as this object. |
equals(Object) | Compares two Objects for equality. |
finalize() | Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. |
getClass() | Returns the runtime class of an object. |
hashCode() | Returns a hash code value for the object. |
notify() | Wakes up a single thread that is waiting on this object's monitor. |
notifyAll() | Wakes up all threads that are waiting on this object's monitor. |
toString() | Returns a string representation of the object. |
wait() | Waits to be notified by another thread of a change in this object. |
wait(long) | Waits to be notified by another thread of a change in this object. |
wait(long, int) | Waits to be notified by another thread of a change in this object. |