Package org.perfectable.introspection
Class ObjectMethods
- java.lang.Object
-
- org.perfectable.introspection.ObjectMethods
-
-
Field Summary
Fields Modifier and Type Field Description static Method
CLONE
Reflection forObject.clone()
.static Method
EQUALS
Reflection forObject.equals(Object)
.static Method
FINALIZE
Reflection forObject.finalize()
.static Method
GET_CLASS
Reflection forObject.getClass()
.static Method
HASH_CODE
Reflection forObject.hashCode()
.static Method
NOTIFY
Reflection forObject.notify()
.static Method
NOTIFY_ALL
Reflection forObject.notifyAll()
.static Method
TO_STRING
Reflection forObject.toString()
.static Method
WAIT
Reflection forObject.wait()
.static Method
WAIT_NANOSECONDS
Reflection forObject.wait(long, int)
.static Method
WAIT_TIMEOUT
Reflection forObject.wait(long)
.
-
-
-
Field Detail
-
EQUALS
public static final Method EQUALS
Reflection forObject.equals(Object)
.
-
HASH_CODE
public static final Method HASH_CODE
Reflection forObject.hashCode()
.
-
FINALIZE
public static final Method FINALIZE
Reflection forObject.finalize()
.
-
NOTIFY
public static final Method NOTIFY
Reflection forObject.notify()
.
-
NOTIFY_ALL
public static final Method NOTIFY_ALL
Reflection forObject.notifyAll()
.
-
WAIT
public static final Method WAIT
Reflection forObject.wait()
.
-
WAIT_TIMEOUT
public static final Method WAIT_TIMEOUT
Reflection forObject.wait(long)
.
-
WAIT_NANOSECONDS
public static final Method WAIT_NANOSECONDS
Reflection forObject.wait(long, int)
.
-
GET_CLASS
public static final Method GET_CLASS
Reflection forObject.getClass()
.
-
TO_STRING
public static final Method TO_STRING
Reflection forObject.toString()
.
-
CLONE
public static final Method CLONE
Reflection forObject.clone()
.
-
-