Gets the hashcode value of this URI instance. @return the appropriate hashcode value.
()
| 1270 | * @return the appropriate hashcode value. |
| 1271 | */ |
| 1272 | @Override |
| 1273 | public int hashCode() { |
| 1274 | if (hash == -1) { |
| 1275 | hash = getHashString().hashCode(); |
| 1276 | } |
| 1277 | return hash; |
| 1278 | } |
| 1279 | |
| 1280 | /** |
| 1281 | * Indicates whether this URI is absolute, which means that a scheme part is |
nothing calls this directly
no test coverage detected