(Object that)
| 197 | } |
| 198 | |
| 199 | @Override |
| 200 | public boolean equals(Object that) { |
| 201 | if (this == that) { |
| 202 | return true; |
| 203 | } |
| 204 | |
| 205 | if (!(that instanceof SSDeepHash)) { |
| 206 | return false; |
| 207 | } |
| 208 | SSDeepHash other = (SSDeepHash) that; |
| 209 | return toString().equals(other.toString()); |
| 210 | } |
| 211 | |
| 212 | /** |
| 213 | * Return a number between 0 and 100 inclusive where 0 is a terrible match and 100 is a great match. |