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)
| 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. |