Represents a Uniform Resource Identifier (URI) reference.

See java.net.URI for full documentation

Hierarchy

  • URI

Constructors

Methods

  • Compares this URI to another object, which must be a URI.

    Parameters

    Returns number

  • Returns the decoded authority component of this URI.

    Returns string

  • Returns the decoded fragment component of this URI.

    Returns string

  • Returns the host component of this URI.

    Returns string

  • Returns the decoded path component of this URI.

    Returns string

  • Returns the port number of this URI.

    Returns number

  • Returns the decoded query component of this URI.

    Returns string

  • Returns the raw authority component of this URI.

    Returns string

  • Returns the raw fragment component of this URI.

    Returns string

  • Returns the raw path component of this URI.

    Returns string

  • Returns the raw query component of this URI.

    Returns string

  • Returns the raw scheme-specific part of this URI.

    Returns string

  • Returns the raw user-information component of this URI.

    Returns string

  • Returns the scheme component of this URI.

    Returns string

  • Returns the decoded scheme-specific part of this URI.

    Returns string

  • Returns the decoded user-information component of this URI.

    Returns string

  • Tells whether or not this URI is absolute.

    Returns boolean

  • Tells whether or not this URI is opaque.

    Returns boolean

  • Normalizes this URI's path.

    Returns URI

  • Attempts to parse this URI's authority component, if defined, into user-information, host, and port components.

    Returns URI

  • Relativizes the given URI against this URI.

    Parameters

    Returns URI

  • Constructs a new URI by parsing the given string and then resolving it against this URI.

    Parameters

    • str: string

    Returns URI

  • Resolves the given URI against this URI.

    Parameters

    Returns URI

  • Returns the content of this URI as a US-ASCII string.

    Returns string

  • Constructs a URL from this URI.

    Returns URL

  • Creates a URI by parsing the given string.

    Parameters

    • str: string

    Returns URI

Generated using TypeDoc