MCPcopy Create free account
hub / github.com/davidgiven/luje / equals

Method equals

lib/java/lang/Character.java:722–725  ·  view source on GitHub ↗

Compares this character subset with the specified object. Uses java.lang.Object#equals(Object) to do the comparison. @param object the object to compare this character subset with. @return true if object is this subset, that is, if object == this;

(Object object)

Source from the content-addressed store, hash-verified

720 * {@code object == this}; {@code false} otherwise.
721 */
722 @Override
723 public final boolean equals(Object object) {
724 return super.equals(object);
725 }
726
727 /**
728 * Returns the integer hash code for this character subset.

Callers

nothing calls this directly

Calls 1

equalsMethod · 0.65

Tested by

no test coverage detected