Package 

Class UnparseableURIDataAdapter

    • Method Summary

      Modifier and Type Method Description
      boolean isValid() The URI is a valid one or not (looks malformed)
      String scheme() The scheme of this URI.
      String host() The host of this URI.
      int port() The port number of this URI.
      String path() The decoded path of this URI.
      String fragment() The decoded fragment of this URI.
      String query() The decoded query string of this URI.
      boolean supportsRaw() Does this adapter support raw encoded access?
      String rawPath() The raw path of this URI.
      String rawQuery() The raw query string of this URI.
      String raw() The raw path(?query) of this URI.
      • Methods inherited from class com.datadog.trace.bootstrap.instrumentation.api.URIDataAdapterBase

        fromURI, hasPlusEncodedSpaces
      • Methods inherited from class java.lang.Object

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

      • UnparseableURIDataAdapter

        UnparseableURIDataAdapter(String rawUri)
    • Method Detail

      • isValid

         boolean isValid()

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

      • scheme

         String scheme()

        The scheme of this URI. Can never be encoded.

      • host

         String host()

        The host of this URI. Can never be encoded.

      • port

         int port()

        The port number of this URI.

      • path

         String path()

        The decoded path of this URI.

      • query

         String query()

        The decoded query string of this URI.

      • supportsRaw

         boolean supportsRaw()

        Does this adapter support raw encoded access?

      • raw

         String raw()

        The raw path(?query) of this URI.