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


Constructor Summary
Object()
           
 
Method Summary
protected  Object clone()
           
 boolean equals(Object obj)
           
protected  void finalize()
           
 Class<? extends Object> getClass()
           
 int hashCode()
           
 void notify()
           
 void notifyAll()
           
 String toString()
           
 void wait()
           
 void wait(long millis)
           
 void wait(long millis, int nanos)
           
 

Constructor Detail

Object

public Object()
Method Detail

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()