final class RequestCookieJar extends AnyVal
- Source
- ResponseCookie.scala
- Alphabetic
- By Inheritance
- RequestCookieJar
- AnyVal
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Value Members
- def ++(cookies: Iterable[RequestCookie]): RequestCookieJar
- def apply(key: String): RequestCookie
- 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
- 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.