Package 

Interface URIDataAdapter

    • Method Summary

      Modifier and Type Method Description
      abstract String scheme() The scheme of this URI.
      abstract String host() The host of this URI.
      abstract int port() The port number of this URI.
      abstract String path() The decoded path of this URI.
      abstract String fragment() The decoded fragment of this URI.
      abstract String query() The decoded query string of this URI.
      abstract boolean supportsRaw() Does this adapter support raw encoded access?
      abstract String rawPath() The raw path of this URI.
      abstract boolean hasPlusEncodedSpaces() Does the raw query string have '+' encoded spaces?
      abstract String rawQuery() The raw query string of this URI.
      abstract String raw() The raw path(?query) of this URI.
      abstract boolean isValid() The URI is a valid one or not (looks malformed)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • scheme

         abstract String scheme()

        The scheme of this URI. Can never be encoded.

      • host

         abstract String host()

        The host of this URI. Can never be encoded.

      • port

         abstract int port()

        The port number of this URI.

      • path

         abstract String path()

        The decoded path of this URI.

      • fragment

         abstract String fragment()

        The decoded fragment of this URI.

      • query

         abstract String query()

        The decoded query string of this URI.

      • supportsRaw

         abstract boolean supportsRaw()

        Does this adapter support raw encoded access?

      • hasPlusEncodedSpaces

         abstract boolean hasPlusEncodedSpaces()

        Does the raw query string have '+' encoded spaces?

      • rawQuery

         abstract String rawQuery()

        The raw query string of this URI.

      • raw

         abstract String raw()

        The raw path(?query) of this URI.

      • isValid

         abstract boolean isValid()

        The URI is a valid one or not (looks malformed)