Lines Matching defs:Object

29  * Class {@code Object} is the root of the class hierarchy.
30 * Every class has {@code Object} as a superclass. All objects,
37 public class Object {
45 * Returns the runtime class of this {@code Object}. The returned
79 * <li>If two objects are equal according to the {@code equals(Object)}
83 * according to the {@link java.lang.Object#equals(java.lang.Object)}
91 * class {@code Object} does return distinct integers for distinct
98 * @see java.lang.Object#equals(java.lang.Object)
131 * The {@code equals} method for class {@code Object} implements
149 public boolean equals(Object obj) {
173 * {@code Object}) obey this convention, it will be the case that
187 * The method {@code clone} for class {@code Object} performs a
200 * The class {@code Object} does not itself implement the interface
202 * whose class is {@code Object} will result in throwing an
213 protected native Object clone() throws CloneNotSupportedException;
223 * The {@code toString} method for class {@code Object}
269 * @see java.lang.Object#notifyAll()
270 * @see java.lang.Object#wait()
293 * @see java.lang.Object#notify()
294 * @see java.lang.Object#wait()
300 * {@link java.lang.Object#notify()} method or the
301 * {@link java.lang.Object#notifyAll()} method for this object, or a
380 * @see java.lang.Object#notify()
381 * @see java.lang.Object#notifyAll()
387 * {@link java.lang.Object#notify()} method or the
388 * {@link java.lang.Object#notifyAll()} method for this object, or
466 * {@link java.lang.Object#notify()} method or the
467 * {@link java.lang.Object#notifyAll()} method for this object.
499 * @see java.lang.Object#notify()
500 * @see java.lang.Object#notifyAll()
526 * The {@code finalize} method of class {@code Object} performs no
528 * {@code Object} may override this definition.