/**
* returns a hash code value for the object. this method is
* supported for the benefit of hash tables such as those provided by
* {@link java.util.hashmap}.
* <p>
* the general contract of {@code hashcode} is:
* <ul>
* <li>whenever it is invoked on the same object more than once during
* an execution of a java application, the {@code hashcode} method
* must consistently return the same integer, provided no information
* used in {@code equals} comparisons on the object is modified.
* this integer need not remain consistent from one execution of an
* application to another execution of the same application.
* <li>if two objects are equal according to the {@code equals(object)}
* method, then calling the {@code hashcode} method on each of
* the two objects must produce the same integer result.
* <li>it is <em>not</em> required that if two objects are unequal
* according to the {@link java.lang.object#equals(java.lang.object)}
* method, then calling the {@code hashcode} method on each of the
* two objects must produce distinct integer results. however, the
* programmer should be aware that producing distinct integer results
* for unequal objects may improve the performance of hash tables.
* </ul>
* <p>
* as much as is reasonably practical, the hashcode method defined by
* class {@code object} does return distinct integers for distinct
* objects. (this is typically implemented by converting the internal
* address of the object into an integer, but this implementation
* technique is not required by the
* java™ programming language.)
*
* @return a hash code value for this object.
* @see java.lang.object#equals(java.lang.object)
* @see java.lang.system#identityhashcode
*/
public native int hashcode();
/**
* indicates whether some other object is "equal to" this one.
* <p>
* the {@code equals} method implements an equivalence relation
* on non-null object references:
* <ul>
* <li>it is <i>reflexive</i>: for any non-null reference value
* {@code x}, {@code x.equals(x)} should return
* {@code true}.
* <li>it is <i>symmetric</i>: for any non-null reference values
* {@code x} and {@code y}, {@code x.equals(y)}
* should return {@code true} if and only if
* {@code y.equals(x)} returns {@code true}.
* <li>it is <i>transitive</i>: for any non-null reference values
* {@code x}, {@code y}, and {@code z}, if
* {@code x.equals(y)} returns {@code true} and
* {@code y.equals(z)} returns {@code true}, then
* {@code x.equals(z)} should return {@code true}.
* <li>it is <i>consistent</i>: for any non-null reference values
* {@code x} and {@code y}, multiple invocations of
* {@code x.equals(y)} consistently return {@code true}
* or consistently return {@code false}, provided no
* information used in {@code equals} comparisons on the
* objects is modified.
* <li>for any non-null reference value {@code x},
* {@code x.equals(null)} should return {@code false}.
* </ul>
* <p>
* the {@code equals} method for class {@code object} implements
* the most discriminating possible equivalence relation on objects;
* that is, for any non-null reference values {@code x} and
* {@code y}, this method returns {@code true} if and only
* if {@code x} and {@code y} refer to the same object
* ({@code x == y} has the value {@code true}).
* <p>
* note that it is generally necessary to override the {@code hashcode}
* method whenever this method is overridden, so as to maintain the
* general contract for the {@code hashcode} method, which states
* that equal objects must have equal hash codes.
*
* @param obj the reference object with which to compare.
* @return {@code true} if this object is the same as the obj
* argument; {@code false} otherwise.
* @see #hashcode()
* @see java.util.hashmap
*/
public boolean equals(object obj) {
return (this == obj);
}