()
| 2444 | * Vorzeichen passend zur Definition von {@code equals()}. </p> |
| 2445 | */ |
| 2446 | @Override |
| 2447 | public int hashCode() { |
| 2448 | |
| 2449 | int hash = this.getTotalLength().hashCode(); |
| 2450 | |
| 2451 | if (this.negative) { |
| 2452 | hash ^= hash; |
| 2453 | } |
| 2454 | |
| 2455 | return hash; |
| 2456 | |
| 2457 | } |
| 2458 | |
| 2459 | /** |
| 2460 | * <p>Gets a canonical representation which optionally starts with a |
nothing calls this directly
no test coverage detected