java.lang
Class Object
java.lang.Object
public class Object
Standard base class for all objects, as specified by the standard Java
API.
Compliance: CLDC: 1.0 complete
Compliance: J2SE: 1.4 incomplete
Object
public Object()
getClass
public final Class<? extends Object> getClass()
toString
public String toString()
equals
public boolean equals(Object obj)
hashCode
public int hashCode()
clone
protected Object clone()
throws CloneNotSupportedException
- Throws:
CloneNotSupportedException
wait
public final void wait()
throws InterruptedException
- Throws:
InterruptedException
wait
public final void wait(long millis)
throws InterruptedException
- Throws:
InterruptedException
wait
public final void wait(long millis,
int nanos)
throws InterruptedException
- Throws:
InterruptedException
notify
public final void notify()
notifyAll
public final void notifyAll()
finalize
protected void finalize()