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 Object
clone()
boolean
equals(Object var0)
protected void
finalize()
Class
getClass()
int
hashCode()
void
notify()
void
notifyAll()
String
toString()
void
wait()
void
wait(long var0)
void
wait(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
-
-