final class RequestCookieJar extends AnyVal
- Annotations
- @deprecated
- Deprecated
(Since version 0.21.20) Use the CookieJar middleware instead
- Source
- ResponseCookie.scala
- Alphabetic
- By Inheritance
- RequestCookieJar
- AnyVal
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
##(): Int
- Definition Classes
- Any
- def ++(cookies: Iterable[RequestCookie]): RequestCookieJar
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- Any
- def apply(key: String): RequestCookie
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- def contains(key: String): Boolean
- val cookies: List[RequestCookie]
- def default(key: String): RequestCookie
- def empty: RequestCookieJar
-
def
filterKeys(p: (String) ⇒ Boolean): RequestCookieJar
Filters this map by retaining only keys satisfying a predicate.
Filters this map by retaining only keys satisfying a predicate.
- 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.
- def get(key: String): Option[RequestCookie]
-
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def getOrElse(key: String, default: ⇒ String): RequestCookie
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def iterator: Iterator[RequestCookie]
- def keySet: Set[String]
-
def
keys: Iterable[String]
Collects all keys of this map in an iterable collection.
Collects all keys of this map in an iterable collection.
- returns
the keys of this map as an iterable.
-
def
keysIterator: Iterator[String]
Creates an iterator for all keys.
Creates an iterator for all keys.
- returns
an iterator over all keys.
-
def
toString(): String
- Definition Classes
- RequestCookieJar → Any
-
def
values: Iterable[String]
Collects all values of this map in an iterable collection.
Collects all values of this map in an iterable collection.
- returns
the values of this map as an iterable.
-
def
valuesIterator: Iterator[Any]
Creates an iterator for all values in this map.
Creates an iterator for all values in this map.
- returns
an iterator over all values that are associated with some key in this map.