zhttp.dsl

package zhttp.dsl

Members list

Concise view

Type members

Classlikes

object ->

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Graph
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

Graph
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

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait Path
class Object
trait Matchable
class Any
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

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

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Path
class Object
trait Matchable
class Any
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

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