Packages

case class JavaUri(uri: Uri) extends Uri with Product with Serializable

INTERNAL API

Annotations
@InternalApi()
Source
JavaUri.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JavaUri
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Uri
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JavaUri(uri: Uri)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from JavaUri to any2stringadd[JavaUri] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (JavaUri, B)
    Implicit
    This member is added by an implicit conversion from JavaUri to ArrowAssoc[JavaUri] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def addPathSegment(segment: String): Uri

    Returns a copy of this instance with a path segment added at the end.

    Returns a copy of this instance with a path segment added at the end.

    Definition Classes
    JavaUriUri
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def asScala(): Uri

    Returns the Scala DSL representation of this Uri.

    Returns the Scala DSL representation of this Uri.

    Definition Classes
    JavaUriUri
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  10. def ensuring(cond: (JavaUri) ⇒ Boolean, msg: ⇒ Any): JavaUri
    Implicit
    This member is added by an implicit conversion from JavaUri to Ensuring[JavaUri] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (JavaUri) ⇒ Boolean): JavaUri
    Implicit
    This member is added by an implicit conversion from JavaUri to Ensuring[JavaUri] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): JavaUri
    Implicit
    This member is added by an implicit conversion from JavaUri to Ensuring[JavaUri] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): JavaUri
    Implicit
    This member is added by an implicit conversion from JavaUri to Ensuring[JavaUri] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from JavaUri to StringFormat[JavaUri] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  17. def fragment(fragment: String): Uri

    Returns a copy of this instance with a new fragment.

    Returns a copy of this instance with a new fragment.

    Definition Classes
    JavaUriUri
  18. def fragment(fragment: Optional[String]): Uri

    Returns a copy of this instance with a new optional fragment.

    Returns a copy of this instance with a new optional fragment.

    Definition Classes
    JavaUriUri
  19. def fragment(): Optional[String]

    Returns the fragment part of this Uri.

    Returns the fragment part of this Uri.

    Definition Classes
    JavaUriUri
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def getHost(): Host

    Returns the host of this instance

    Returns the host of this instance

    Definition Classes
    JavaUriUri
  22. def getPathString(): String

    Returns the path of this instance

    Returns the path of this instance

    Definition Classes
    JavaUriUri
  23. def getPort(): Int

    Returns the port of this instance

    Returns the port of this instance

    Definition Classes
    JavaUriUri
  24. def getScheme(): String

    Returns the scheme of this instance

    Returns the scheme of this instance

    Definition Classes
    JavaUriUri
  25. def getUserInfo(): String

    Returns the user info of this instance

    Returns the user info of this instance

    Definition Classes
    JavaUriUri
  26. def host(host: String): Uri

    Returns a copy of this instance with a new host.

    Returns a copy of this instance with a new host.

    Definition Classes
    JavaUriUri
  27. def host(host: Host): Uri

    Returns a copy of this instance with a new Host.

    Returns a copy of this instance with a new Host.

    Definition Classes
    JavaUriUri
  28. def host(): Host

    Returns the Host of this Uri.

    Returns the Host of this Uri.

    Definition Classes
    JavaUriUri
  29. def isAbsolute(): Boolean

    Returns if this is an absolute Uri.

    Returns if this is an absolute Uri.

    Definition Classes
    JavaUriUri
  30. def isEmpty(): Boolean

    Returns if this is an empty Uri.

    Returns if this is an empty Uri.

    Definition Classes
    JavaUriUri
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. def isRelative(): Boolean

    Returns if this is a relative Uri.

    Returns if this is a relative Uri.

    Definition Classes
    JavaUriUri
  33. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  36. def path(path: String): Uri

    Returns a copy of this instance with a new path.

    Returns a copy of this instance with a new path.

    Definition Classes
    JavaUriUri
  37. def path(): String

    Returns a String representation of the path of this Uri.

    Returns a String representation of the path of this Uri.

    Definition Classes
    JavaUriUri
  38. def pathSegments(): Iterable[String]

    Returns the path segments of this Uri as an Iterable.

    Returns the path segments of this Uri as an Iterable.

    Definition Classes
    JavaUriUri
  39. def port(port: Int): Uri

    Returns a copy of this instance with a new port.

    Returns a copy of this instance with a new port.

    Definition Classes
    JavaUriUri
  40. def port(): Int

    Returns the port of this Uri.

    Returns the port of this Uri.

    Definition Classes
    JavaUriUri
  41. def query(query: Query): Uri

    Returns a copy of this instance with a new query.

    Returns a copy of this instance with a new query.

    Definition Classes
    JavaUriUri
  42. def query(charset: Charset, mode: ParsingMode): Query

    Returns the parsed Query instance of this Uri using the given charset and parsing mode.

    Returns the parsed Query instance of this Uri using the given charset and parsing mode.

    Definition Classes
    JavaUriUri
  43. def query(): Query

    Returns the parsed Query instance of this Uri.

    Returns the parsed Query instance of this Uri.

    Definition Classes
    JavaUriUri
  44. def queryString(charset: Charset): Optional[String]

    Returns a decoded String representation of the query of this Uri.

    Returns a decoded String representation of the query of this Uri.

    Definition Classes
    JavaUriUri
  45. def rawQueryString(rawQuery: String): Uri

    Returns a copy of this instance with a new query.

    Returns a copy of this instance with a new query.

    Definition Classes
    JavaUriUri
  46. def rawQueryString(): Optional[String]

    Returns an undecoded String representation of the query of this Uri.

    Returns an undecoded String representation of the query of this Uri.

    Definition Classes
    JavaUriUri
  47. def scheme(scheme: String): Uri

    Returns a copy of this instance with a new scheme.

    Returns a copy of this instance with a new scheme.

    Definition Classes
    JavaUriUri
  48. def scheme(): String

    Returns the scheme of this Uri.

    Returns the scheme of this Uri.

    Definition Classes
    JavaUriUri
  49. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  50. def t(f: (Uri) ⇒ Uri): Uri
  51. def toRelative(): Uri

    Returns a copy of this instance that is relative.

    Returns a copy of this instance that is relative.

    Definition Classes
    JavaUriUri
  52. def toString(): String
    Definition Classes
    JavaUri → AnyRef → Any
  53. val uri: Uri
  54. def userInfo(userInfo: String): Uri

    Returns a copy of this instance with new user-info.

    Returns a copy of this instance with new user-info.

    Definition Classes
    JavaUriUri
  55. def userInfo(): String

    Returns the user-info of this Uri.

    Returns the user-info of this Uri.

    Definition Classes
    JavaUriUri
  56. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  57. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  58. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  59. def [B](y: B): (JavaUri, B)
    Implicit
    This member is added by an implicit conversion from JavaUri to ArrowAssoc[JavaUri] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Uri

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from JavaUri to any2stringadd[JavaUri]

Inherited by implicit conversion StringFormat from JavaUri to StringFormat[JavaUri]

Inherited by implicit conversion Ensuring from JavaUri to Ensuring[JavaUri]

Inherited by implicit conversion ArrowAssoc from JavaUri to ArrowAssoc[JavaUri]

Ungrouped