zhttp.dsl

package zhttp.dsl

Members list

Type members

Classlikes

object ->

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type
->.type
object /

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type
/.type
object /:

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type
/:.type
object /^

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type
/^.type
object :?

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type
:?.type
object IntVar

Integer extractor of a path variable:

Integer extractor of a path variable:

 Path("/user/123") match {
    case Root / "user" / IntVar(userId) => ...

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type
IntVar.type
object LongVar

Long extractor of a path variable:

Long extractor of a path variable:

 Path("/user/123") match {
    case Root / "user" / LongVar(userId) => ...

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type
LongVar.type
trait Path

Attributes

Companion
object
Supertypes
class Object
trait Matchable
class Any
Known subtypes
object Root.type
class URLPath
object Path

Attributes

Companion
trait
Supertypes
class Object
trait Matchable
class Any
Self type
Path.type
class QueryParam(name: String)

Attributes

Supertypes
class Object
trait Matchable
class Any
case object Root extends Path

Attributes

Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait Path
class Object
trait Matchable
class Any
Show all
Self type
Root.type
object StringVar

UUID extractor of a path variable:

UUID extractor of a path variable:

 Path("/user/thomasd") match {
    case Root / "user" / StringVar(userId) => ...

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type
StringVar.type
final case class URLPath(parent: Path, child: String) extends Path

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Path
class Object
trait Matchable
class Any
Show all
object UUIDVar

UUID extractor of a path variable:

UUID extractor of a path variable:

 Path("/user/13251d88-7a73-4fcf-b935-54dfae9f023e") match {
    case Root / "user" / UUIDVar(userId) => ...

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type
UUIDVar.type