RequestCookieJar

org.http4s.RequestCookieJar
See theRequestCookieJar companion object
final class RequestCookieJar extends AnyVal

Attributes

Companion:
object
Deprecated
true
Source:
RequestCookieJar.scala
Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

Attributes

Source:
RequestCookieJar.scala

Filters this map by retaining only keys satisfying a predicate.

Filters this map by retaining only keys satisfying a predicate.

Attributes

p

the predicate used to test keys

Returns:

an immutable map consisting only of those key value pairs of this map where the key satisfies the predicate p. The resulting map wraps the original map without copying any elements.

Source:
RequestCookieJar.scala
def getOrElse(key: String, default: => String): RequestCookie

Attributes

Source:
RequestCookieJar.scala

Attributes

Source:
RequestCookieJar.scala

Collects all keys of this map in an iterable collection.

Collects all keys of this map in an iterable collection.

Attributes

Returns:

the keys of this map as an iterable.

Source:
RequestCookieJar.scala

Creates an iterator for all keys.

Creates an iterator for all keys.

Attributes

Returns:

an iterator over all keys.

Source:
RequestCookieJar.scala
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns:

a string representation of the object.

Definition Classes
Any
Source:
RequestCookieJar.scala

Collects all values of this map in an iterable collection.

Collects all values of this map in an iterable collection.

Attributes

Returns:

the values of this map as an iterable.

Source:
RequestCookieJar.scala

Creates an iterator for all values in this map.

Creates an iterator for all values in this map.

Attributes

Returns:

an iterator over all values that are associated with some key in this map.

Source:
RequestCookieJar.scala

Concrete fields