java.lang
Class Object

java.lang.Object

public synchronized class Object


Constructor Summary
Object()
           
 
Method Summary
(package private) static void ()
           
protected  Object clone()
           
 boolean equals(Object)
           
protected  void finalize()
           
 Class getClass()
           
 int hashCode()
           
 void notify()
           
 void notifyAll()
           
private static void registerNatives()
           
 String toString()
           
 void wait()
           
 void wait(long)
           
 void wait(long, int)
           
 

Constructor Detail

Object

public Object()
Method Detail

registerNatives

private static void registerNatives()

getClass

public final Class getClass()

hashCode

public int hashCode()

equals

public boolean equals(Object)

clone

protected Object clone()
                throws CloneNotSupportedException
CloneNotSupportedException

toString

public String toString()

notify

public final void notify()

notifyAll

public final void notifyAll()

wait

public final void wait(long)
                throws InterruptedException
InterruptedException

wait

public final void wait(long,
                       int)
                throws InterruptedException
InterruptedException

wait

public final void wait()
                throws InterruptedException
InterruptedException

finalize

protected void finalize()
                 throws Throwable
Throwable

static void ()