Trait

basis.net

UriParser

Related Doc: package net

Permalink

trait UriParser extends UriFactory

Self Type
net.UriParser
Source
UriParser.scala
Linear Supertypes
UriFactory, AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. UriParser
  2. UriFactory
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. abstract type Authority <: Part

    Permalink
    Definition Classes
    UriFactory
  2. trait AuthorityFactory extends AnyRef

    Permalink
    Definition Classes
    UriFactory
  3. abstract type Fragment <: Part

    Permalink
    Definition Classes
    UriFactory
  4. trait FragmentFactory extends AnyRef

    Permalink
    Definition Classes
    UriFactory
  5. abstract type Host <: Part

    Permalink
    Definition Classes
    UriFactory
  6. trait HostFactory extends AnyRef

    Permalink
    Definition Classes
    UriFactory
  7. abstract type Part

    Permalink
    Definition Classes
    UriFactory
  8. abstract type Path <: Part

    Permalink
    Definition Classes
    UriFactory
  9. trait PathBuilder extends Builder[PathSegment] with State[Path]

    Permalink
    Definition Classes
    UriFactory
  10. trait PathFactory extends AnyRef

    Permalink
    Definition Classes
    UriFactory
  11. final class PathParser extends Parser[Path]

    Permalink
  12. abstract type PathSegment

    Permalink
    Definition Classes
    UriFactory
  13. abstract type Port <: Part

    Permalink
    Definition Classes
    UriFactory
  14. trait PortFactory extends AnyRef

    Permalink
    Definition Classes
    UriFactory
  15. final class PortParser extends Parser[Port]

    Permalink
  16. abstract type Query <: Part

    Permalink
    Definition Classes
    UriFactory
  17. trait QueryFactory extends AnyRef

    Permalink
    Definition Classes
    UriFactory
  18. abstract type QueryParam

    Permalink
    Definition Classes
    UriFactory
  19. abstract type Scheme <: Part

    Permalink
    Definition Classes
    UriFactory
  20. trait SchemeFactory extends AnyRef

    Permalink
    Definition Classes
    UriFactory
  21. abstract type Uri

    Permalink
    Definition Classes
    UriFactory
  22. abstract type UserInfo <: Part

    Permalink
    Definition Classes
    UriFactory
  23. trait UserInfoFactory extends AnyRef

    Permalink
    Definition Classes
    UriFactory

Abstract Value Members

  1. abstract val Authority: AuthorityFactory

    Permalink
    Definition Classes
    UriFactory
  2. abstract val Fragment: FragmentFactory

    Permalink
    Definition Classes
    UriFactory
  3. abstract val Host: HostFactory

    Permalink
    Definition Classes
    UriFactory
  4. abstract val Path: PathFactory

    Permalink
    Definition Classes
    UriFactory
  5. abstract val Port: PortFactory

    Permalink
    Definition Classes
    UriFactory
  6. abstract val Query: QueryFactory

    Permalink
    Definition Classes
    UriFactory
  7. abstract val Scheme: SchemeFactory

    Permalink
    Definition Classes
    UriFactory
  8. abstract val UserInfo: UserInfoFactory

    Permalink
    Definition Classes
    UriFactory
  9. abstract def apply(scheme: Scheme = Scheme.Undefined, authority: Authority = Authority.Undefined, path: Path = Path.Empty, query: Query = Query.Undefined, fragment: Fragment = Fragment.Undefined): Uri

    Permalink
    Definition Classes
    UriFactory

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. lazy val AuthorityParser: Iteratee[Int, Authority]

    Permalink
  5. lazy val FragmentParser: Iteratee[Int, Fragment]

    Permalink
  6. lazy val HostAddressParser: Iteratee[Int, Host]

    Permalink
  7. lazy val HostLiteralParser: Iteratee[Int, Host]

    Permalink
  8. lazy val HostParser: Iteratee[Int, Host]

    Permalink
  9. lazy val PathParser: Iteratee[Int, Path]

    Permalink
  10. lazy val PortParser: Iteratee[Int, Port]

    Permalink
  11. lazy val QueryParser: Iteratee[Int, Query]

    Permalink
  12. lazy val SchemeParser: Iteratee[Int, Scheme]

    Permalink
  13. lazy val UriParser: Iteratee[Int, Uri]

    Permalink
  14. lazy val UserInfoParser: Iteratee[Int, UserInfo]

    Permalink
  15. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  16. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. def decodeDigit(c: Int): Int

    Permalink
    Attributes
    protected
  18. def decodeHex(c: Int): Int

    Permalink
    Attributes
    protected
  19. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  21. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  23. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  24. def isAlpha(c: Int): Boolean

    Permalink
    Attributes
    protected
  25. def isDigit(c: Int): Boolean

    Permalink
    Attributes
    protected
  26. def isFragmentChar(c: Int): Boolean

    Permalink
  27. def isHexChar(c: Int): Boolean

    Permalink
    Attributes
    protected
  28. def isHostChar(c: Int): Boolean

    Permalink
  29. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  30. def isParamChar(c: Int): Boolean

    Permalink
  31. def isPathChar(c: Int): Boolean

    Permalink
  32. def isQueryChar(c: Int): Boolean

    Permalink
  33. def isSchemeChar(c: Int): Boolean

    Permalink
  34. def isSubDelimChar(c: Int): Boolean

    Permalink
  35. def isUnreservedChar(c: Int): Boolean

    Permalink
  36. def isUserChar(c: Int): Boolean

    Permalink
  37. def isUserInfoChar(c: Int): Boolean

    Permalink
  38. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  39. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  40. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  41. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  42. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  43. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from UriFactory

Inherited from AnyRef

Inherited from Any

Ungrouped