Package java.lang
Class Object
- java.lang.Object
-
public class Object
-
-
Constructor Summary
Constructors Constructor Description Object()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Objectclone()booleanequals(Object var0)protected voidfinalize()ClassgetClass()inthashCode()voidnotify()voidnotifyAll()StringtoString()voidwait()voidwait(long var0)voidwait(long var0, int var1)
-
-
-
Method Detail
-
clone
protected Object clone() throws CloneNotSupportedException
- Throws:
CloneNotSupportedException
-
equals
public boolean equals(Object var0)
-
getClass
public final Class getClass()
-
hashCode
public int hashCode()
-
notify
public final void notify()
-
notifyAll
public final void notifyAll()
-
toString
public String toString()
-
wait
public final void wait() throws InterruptedException- Throws:
InterruptedException
-
wait
public final void wait(long var0) throws InterruptedException- Throws:
InterruptedException
-
wait
public final void wait(long var0, int var1) throws InterruptedException- Throws:
InterruptedException
-
-