Returns the percent-decoded "fragment" component of this URI, or null if not present. NB: This method assumes the fragment was encoded as UTF-8, although RFC 3986 doesn't specify an encoding. Decoding errors are indicated by a '\u005CuFFFD' unicode replacement character in the output
()
| 588 | * uses a completely different method of escaping literal '/' characters. |
| 589 | */ |
| 590 | @Nullable |
| 591 | public String getFragment() { |
| 592 | return percentDecodeAssumedUtf8(fragment); |
| 593 | } |
| 594 | |
| 595 | /** |
| 596 | * Returns the fragment component of this URI in its original, possibly percent-encoded form, and |