{@inheritDoc}
(Object that)
| 219 | * {@inheritDoc} |
| 220 | */ |
| 221 | @Override |
| 222 | public boolean equals(Object that) { |
| 223 | if (this == that) return true; |
| 224 | if (!(that instanceof GString)) return false; |
| 225 | |
| 226 | return equals((GString) that); |
| 227 | } |
| 228 | |
| 229 | /** |
| 230 | * Compares this GString with another GString by rendered content. |