Lines Matching defs:Object

31  * Class {@code Object} is the root of the class hierarchy.
32 * Every class has {@code Object} as a superclass. All objects,
39 public class Object {
50 public Object() {}
53 * Returns the runtime class of this {@code Object}. The returned
87 * <li>If two objects are equal according to the {@code equals(Object)}
91 * according to the {@link java.lang.Object#equals(java.lang.Object)}
99 * by class {@code Object} does return distinct integers for
105 * @see java.lang.Object#equals(java.lang.Object)
139 * The {@code equals} method for class {@code Object} implements
157 public boolean equals(Object obj) {
181 * {@code Object}) obey this convention, it will be the case that
195 * The method {@code clone} for class {@code Object} performs a
208 * The class {@code Object} does not itself implement the interface
210 * whose class is {@code Object} will result in throwing an
222 protected native Object clone() throws CloneNotSupportedException;
232 * The {@code toString} method for class {@code Object}
278 * @see java.lang.Object#notifyAll()
279 * @see java.lang.Object#wait()
303 * @see java.lang.Object#notify()
304 * @see java.lang.Object#wait()
311 * {@link java.lang.Object#notify()} method or the
312 * {@link java.lang.Object#notifyAll()} method for this object, or a
393 * @see java.lang.Object#notify()
394 * @see java.lang.Object#notifyAll()
400 * {@link java.lang.Object#notify()} method or the
401 * {@link java.lang.Object#notifyAll()} method for this object, or
479 * {@link java.lang.Object#notify()} method or the
480 * {@link java.lang.Object#notifyAll()} method for this object.
512 * @see java.lang.Object#notify()
513 * @see java.lang.Object#notifyAll()
539 * The {@code finalize} method of class {@code Object} performs no
541 * {@code Object} may override this definition.