Returns true iff this URI has a scheme and an authority/path hierarchy, but no fragment. All instances of Uri are RFC 3986 URIs, not "relative references", so this method is equivalent to getFragment() == null. It mostly exists for compatibility with java.net.URI.
()
| 637 | * java.net.URI}. |
| 638 | */ |
| 639 | public boolean isAbsolute() { |
| 640 | return scheme != null && fragment == null; |
| 641 | } |
| 642 | |
| 643 | /** |
| 644 | * {@inheritDoc} |
no outgoing calls