Packages

class CookieMap extends CookieMapVersionSpecific

Adapt cookies of a Message to a mutable Map where cookies are indexed by their name. Requests use the Cookie header and Responses use the Set-Cookie header. If a cookie is added to the CookieMap, a header is automatically added to the Message. You can add the same cookie more than once. Use getAll to retrieve all of them, otherwise only the first one is returned. If a cookie is removed from the CookieMap, a header is automatically removed from the message

Linear Supertypes
CookieMapVersionSpecific, Map[String, Cookie], MapOps[String, Cookie, Map, Map[String, Cookie]], Shrinkable[String], Builder[(String, Cookie), Map[String, Cookie]], Growable[(String, Cookie)], Clearable, Cloneable[Map[String, Cookie]], Cloneable, Map[String, Cookie], Equals, MapFactoryDefaults[String, Cookie, [x, y]Map[x, y], [x]Iterable[x]], MapOps[String, Cookie, [_, _]Map[_, _], Map[String, Cookie]], PartialFunction[String, Cookie], (String) => Cookie, Iterable[(String, Cookie)], Iterable[(String, Cookie)], IterableFactoryDefaults[(String, Cookie), [x]Iterable[x]], IterableOps[(String, Cookie), [_]Iterable[_], Map[String, Cookie]], IterableOnceOps[(String, Cookie), [_]Iterable[_], Map[String, Cookie]], IterableOnce[(String, Cookie)], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CookieMap
  2. CookieMapVersionSpecific
  3. Map
  4. MapOps
  5. Shrinkable
  6. Builder
  7. Growable
  8. Clearable
  9. Cloneable
  10. Cloneable
  11. Map
  12. Equals
  13. MapFactoryDefaults
  14. MapOps
  15. PartialFunction
  16. Function1
  17. Iterable
  18. Iterable
  19. IterableFactoryDefaults
  20. IterableOps
  21. IterableOnceOps
  22. IterableOnce
  23. AnyRef
  24. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CookieMap(message: Message)

Type Members

  1. trait GenKeySet extends AnyRef
    Attributes
    protected
    Definition Classes
    MapOps
  2. class KeySet extends AbstractSet[K] with GenKeySet with DefaultSerializable
    Attributes
    protected
    Definition Classes
    MapOps

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ++[V2 >: Cookie](xs: IterableOnce[(String, V2)]): Map[String, V2]
    Definition Classes
    MapOps
  4. final def ++[B >: (String, Cookie)](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. final def ++=(xs: IterableOnce[(String, Cookie)]): CookieMap.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  6. def +=(cookie: Cookie): CookieMap

    Adds the given cookie into this map.

    Adds the given cookie into this map.

    On a Response: existing cookies with this name but different domain/path will be kept. If there is already an identical cookie (different value but name/path/domain is the same) in the map, it will be replaced within a new version.

    On a Request: existing cookies with this name will be kept, as request cookies do not have a domain/path to distinguish them, yet the same cookie name can be repeated in a request. If there are already cookies with the given name and value, they will be removed.

  7. final def +=(elem: (String, Cookie)): CookieMap.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  8. final def --=(xs: IterableOnce[String]): CookieMap.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  9. final def -=(elem: String): CookieMap.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  10. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def add(cookie: Cookie): Unit

    Adds the given cookie into this map.

    Adds the given cookie into this map.

    On a Response: existing cookies with this name but different domain/path will be kept. If there is already an identical cookie (different value but name/path/domain is the same) in the map, it will be replaced within a new version.

    On a Request: existing cookies with this name will be kept, as request cookies do not have a domain/path to distinguish them, yet the same cookie name can be repeated in a request. If there are already cookies with the given name and value, they will be removed.

    See also

    addAll for adding cookies in bulk

  12. def add(name: String, cookie: Cookie): Unit

    Adds the given cookie with name into this map.

    Adds the given cookie with name into this map.

    On a Response: existing cookies with this name but different domain/path will be kept. If there is already an identical cookie (different value but name/path/domain is the same) in the map, it will be replaced within a new version.

    On a Request: existing cookies with this name will be kept, as request cookies do not have a domain/path to distinguish them, yet the same cookie name can be repeated in a request. If there are already cookies with the given name and value, they will be removed.

    See also

    addAll for adding cookies in bulk

  13. def addAll(cookies: TraversableOnce[Cookie]): Unit

    Adds multiple cookies into this map.

    Adds multiple cookies into this map.

    On a Response: existing cookies with this name but different domain/path will be kept. If there is already an identical cookie (different value but name/path/domain is the same) in the map, it will be replaced within a new version.

    On a Request: existing cookies with this name will be kept, as request cookies do not have a domain/path to distinguish them, yet the same cookie name can be repeated in a request. If there are already cookies with the given name and value, they will be removed.

  14. def addAll(cookies: IterableOnce[(String, Cookie)]): CookieMap.this.type
    Definition Classes
    CookieMapVersionSpecific → Growable
  15. def addCookie(cookie: (String, Cookie)): CookieMap.this.type

    Adds the given cookie (which is a tuple of cookie name and Cookie itself) into this map.

    Adds the given cookie (which is a tuple of cookie name and Cookie itself) into this map.

    On a Response: existing cookies with this name but different domain/path will be kept. If there is already an identical cookie (different value but name/path/domain is the same) in the map, it will be replaced within a new version.

    On a Request: existing cookies with this name will be kept, as request cookies do not have a domain/path to distinguish them, yet the same cookie name can be repeated in a request. If there are already cookies with the given name and value, they will be removed.

    Attributes
    protected
    Definition Classes
    CookieMapCookieMapVersionSpecific
  16. def addCookies(cookies: TraversableOnce[(String, Cookie)]): CookieMap.this.type

    Adds the given cookies (which are tuples of cookie name and Cookie itself) into this map.

    Adds the given cookies (which are tuples of cookie name and Cookie itself) into this map.

    On a Response: existing cookies with this name but different domain/path will be kept. If there is already an identical cookie (different value but name/path/domain is the same) in the map, it will be replaced within a new version.

    On a Request: existing cookies with this name will be kept, as request cookies do not have a domain/path to distinguish them, yet the same cookie name can be repeated in a request. If there are already cookies with the given name and value, they will be removed.

    Attributes
    protected
    Definition Classes
    CookieMapCookieMapVersionSpecific
  17. def addOne(cookie: (String, Cookie)): CookieMap.this.type
    Definition Classes
    CookieMapVersionSpecific → Growable
  18. def addString(sb: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    MapOps → IterableOnceOps
  19. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  20. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  21. def andThen[C](k: PartialFunction[Cookie, C]): PartialFunction[String, C]
    Definition Classes
    PartialFunction
  22. def andThen[C](k: (Cookie) => C): PartialFunction[String, C]
    Definition Classes
    PartialFunction → Function1
  23. def apply(key: String): Cookie
    Definition Classes
    MapOps → Function1
    Annotations
    @throws(scala.this.throws.<init>$default$1[NoSuchElementException])
  24. def applyOrElse[K1 <: String, V1 >: Cookie](x: K1, default: (K1) => V1): V1
    Definition Classes
    MapOps → PartialFunction
  25. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  26. def canEqual(that: Any): Boolean
    Definition Classes
    Map → Equals
  27. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  28. def clear(): Unit
    Definition Classes
    MapOps → Builder → Clearable
  29. def clone(): Map[String, Cookie]
    Definition Classes
    MapOps → Cloneable → AnyRef
  30. final def coll: CookieMap.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  31. def collect[K2, V2](pf: PartialFunction[(String, Cookie), (K2, V2)]): Map[K2, V2]
    Definition Classes
    MapOps
  32. def collect[B](pf: PartialFunction[(String, Cookie), B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  33. def collectFirst[B](pf: PartialFunction[(String, Cookie), B]): Option[B]
    Definition Classes
    IterableOnceOps
  34. def compose[R](k: PartialFunction[R, String]): PartialFunction[R, Cookie]
    Definition Classes
    PartialFunction
  35. def compose[A](g: (A) => String): (A) => Cookie
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  36. def concat[V2 >: Cookie](suffix: IterableOnce[(String, V2)]): Map[String, V2]
    Definition Classes
    MapOps
  37. def concat[B >: (String, Cookie)](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  38. def contains(key: String): Boolean
    Definition Classes
    MapOps
  39. def copyToArray[B >: (String, Cookie)](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  40. def copyToArray[B >: (String, Cookie)](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  41. def copyToArray[B >: (String, Cookie)](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  42. def corresponds[B](that: IterableOnce[B])(p: ((String, Cookie), B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  43. def count(p: ((String, Cookie)) => Boolean): Int
    Definition Classes
    IterableOnceOps
  44. def default(key: String): Cookie
    Definition Classes
    MapOps
    Annotations
    @throws(scala.this.throws.<init>$default$1[NoSuchElementException])
  45. def drop(n: Int): Map[String, Cookie]
    Definition Classes
    IterableOps → IterableOnceOps
  46. def dropRight(n: Int): Map[String, Cookie]
    Definition Classes
    IterableOps
  47. def dropWhile(p: ((String, Cookie)) => Boolean): Map[String, Cookie]
    Definition Classes
    IterableOps → IterableOnceOps
  48. def elementWise: ElementWiseExtractor[String, Cookie]
    Definition Classes
    PartialFunction
  49. def empty: CookieMap
    Definition Classes
    CookieMap → MapFactoryDefaults → IterableFactoryDefaults → IterableOps
  50. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  51. def equals(o: Any): Boolean
    Definition Classes
    Map → Equals → AnyRef → Any
  52. def exists(p: ((String, Cookie)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  53. def filter(pred: ((String, Cookie)) => Boolean): Map[String, Cookie]
    Definition Classes
    IterableOps → IterableOnceOps
  54. def filterInPlace(p: (String, Cookie) => Boolean): CookieMap.this.type
    Definition Classes
    MapOps
  55. def filterNot(pred: ((String, Cookie)) => Boolean): Map[String, Cookie]
    Definition Classes
    IterableOps → IterableOnceOps
  56. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  57. def find(p: ((String, Cookie)) => Boolean): Option[(String, Cookie)]
    Definition Classes
    IterableOnceOps
  58. def flatMap[K2, V2](f: ((String, Cookie)) => IterableOnce[(K2, V2)]): Map[K2, V2]
    Definition Classes
    MapOps
  59. def flatMap[B](f: ((String, Cookie)) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  60. def flatten[B](implicit asIterable: ((String, Cookie)) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  61. def fold[A1 >: (String, Cookie)](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  62. def foldLeft[B](z: B)(op: (B, (String, Cookie)) => B): B
    Definition Classes
    IterableOnceOps
  63. def foldRight[B](z: B)(op: ((String, Cookie), B) => B): B
    Definition Classes
    IterableOnceOps
  64. def forall(p: ((String, Cookie)) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  65. def foreach[U](f: ((String, Cookie)) => U): Unit
    Definition Classes
    IterableOnceOps
  66. def foreachEntry[U](f: (String, Cookie) => U): Unit
    Definition Classes
    MapOps
  67. def fromSpecific(coll: IterableOnce[(String, Cookie)]): Map[String, Cookie]
    Attributes
    protected
    Definition Classes
    MapFactoryDefaults → IterableOps
  68. def get(name: String): Option[Cookie]

    Fetches the first cookie with the given name from this map.

    Fetches the first cookie with the given name from this map.

    Definition Classes
    CookieMap → MapOps
  69. def getAll(name: String): Seq[Cookie]

    Fetches all cookies with the given name from this map.

  70. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  71. def getOrElse[V1 >: Cookie](key: String, default: => V1): V1
    Definition Classes
    MapOps
  72. def getOrElseUpdate(key: String, op: => Cookie): Cookie
    Definition Classes
    MapOps
  73. def getValue(name: String): Option[String]

    Fetches the value of the first cookie with the given name from this map.

  74. def groupBy[K](f: ((String, Cookie)) => K): Map[K, Map[String, Cookie]]
    Definition Classes
    IterableOps
  75. def groupMap[K, B](key: ((String, Cookie)) => K)(f: ((String, Cookie)) => B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  76. def groupMapReduce[K, B](key: ((String, Cookie)) => K)(f: ((String, Cookie)) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  77. def grouped(size: Int): Iterator[Map[String, Cookie]]
    Definition Classes
    IterableOps
  78. def hashCode(): Int
    Definition Classes
    Map → AnyRef → Any
  79. def head: (String, Cookie)
    Definition Classes
    IterableOps
  80. def headOption: Option[(String, Cookie)]
    Definition Classes
    IterableOps
  81. def init: Map[String, Cookie]
    Definition Classes
    IterableOps
  82. def inits: Iterator[Map[String, Cookie]]
    Definition Classes
    IterableOps
  83. def isDefinedAt(key: String): Boolean
    Definition Classes
    MapOps → PartialFunction
  84. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  85. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  86. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  87. def isValid: Boolean

    Checks if there was a parse error.

    Checks if there was a parse error. Invalid cookies are ignored.

  88. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    Iterable → Iterable → IterableOps
  89. def iterator: Iterator[(String, Cookie)]

    Returns an iterator that iterates over all cookies in this map.

    Returns an iterator that iterates over all cookies in this map.

    Definition Classes
    CookieMap → IterableOnce
  90. def keySet: Set[String]
    Definition Classes
    MapOps
  91. def keyStepper[S <: Stepper[_]](implicit shape: StepperShape[String, S]): S
    Definition Classes
    MapOps
  92. def keys: Iterable[String]
    Definition Classes
    MapOps
  93. def keysIterator: Iterator[String]
    Definition Classes
    MapOps
  94. def knownSize: Int
    Definition Classes
    MapOps → Growable → IterableOnce
  95. def last: (String, Cookie)
    Definition Classes
    IterableOps
  96. def lastOption: Option[(String, Cookie)]
    Definition Classes
    IterableOps
  97. def lazyZip[B](that: Iterable[B]): LazyZip2[(String, Cookie), B, CookieMap.this.type]
    Definition Classes
    Iterable
  98. def lift: (String) => Option[Cookie]
    Definition Classes
    PartialFunction
  99. def map[K2, V2](f: ((String, Cookie)) => (K2, V2)): Map[K2, V2]
    Definition Classes
    MapOps
  100. def map[B](f: ((String, Cookie)) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  101. def mapFactory: MapFactory[Map]
    Definition Classes
    Map → Map → MapOps
  102. final def mapFromIterable[K2, V2](it: Iterable[(K2, V2)]): Map[K2, V2]
    Attributes
    protected
    Definition Classes
    MapOps
    Annotations
    @inline()
  103. def mapResult[NewTo](f: (Map[String, Cookie]) => NewTo): Builder[(String, Cookie), NewTo]
    Definition Classes
    Builder
  104. def mapValuesInPlace(f: (String, Cookie) => Cookie): CookieMap.this.type
    Definition Classes
    MapOps
  105. def max[B >: (String, Cookie)](implicit ord: Ordering[B]): (String, Cookie)
    Definition Classes
    IterableOnceOps
  106. def maxBy[B](f: ((String, Cookie)) => B)(implicit cmp: Ordering[B]): (String, Cookie)
    Definition Classes
    IterableOnceOps
  107. def maxByOption[B](f: ((String, Cookie)) => B)(implicit cmp: Ordering[B]): Option[(String, Cookie)]
    Definition Classes
    IterableOnceOps
  108. def maxOption[B >: (String, Cookie)](implicit ord: Ordering[B]): Option[(String, Cookie)]
    Definition Classes
    IterableOnceOps
  109. def min[B >: (String, Cookie)](implicit ord: Ordering[B]): (String, Cookie)
    Definition Classes
    IterableOnceOps
  110. def minBy[B](f: ((String, Cookie)) => B)(implicit cmp: Ordering[B]): (String, Cookie)
    Definition Classes
    IterableOnceOps
  111. def minByOption[B](f: ((String, Cookie)) => B)(implicit cmp: Ordering[B]): Option[(String, Cookie)]
    Definition Classes
    IterableOnceOps
  112. def minOption[B >: (String, Cookie)](implicit ord: Ordering[B]): Option[(String, Cookie)]
    Definition Classes
    IterableOnceOps
  113. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  114. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  115. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  116. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  117. def newSpecificBuilder: Builder[(String, Cookie), Map[String, Cookie]]
    Attributes
    protected
    Definition Classes
    MapFactoryDefaults → IterableOps
  118. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding()
  119. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  120. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  121. def orElse[A1 <: String, B1 >: Cookie](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  122. def partition(p: ((String, Cookie)) => Boolean): (Map[String, Cookie], Map[String, Cookie])
    Definition Classes
    IterableOps
  123. def partitionMap[A1, A2](f: ((String, Cookie)) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  124. def product[B >: (String, Cookie)](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  125. def put(key: String, value: Cookie): Option[Cookie]
    Definition Classes
    MapOps
  126. def reduce[B >: (String, Cookie)](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  127. def reduceLeft[B >: (String, Cookie)](op: (B, (String, Cookie)) => B): B
    Definition Classes
    IterableOnceOps
  128. def reduceLeftOption[B >: (String, Cookie)](op: (B, (String, Cookie)) => B): Option[B]
    Definition Classes
    IterableOnceOps
  129. def reduceOption[B >: (String, Cookie)](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  130. def reduceRight[B >: (String, Cookie)](op: ((String, Cookie), B) => B): B
    Definition Classes
    IterableOnceOps
  131. def reduceRightOption[B >: (String, Cookie)](op: ((String, Cookie), B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  132. def remove(key: String): Option[Cookie]
    Definition Classes
    MapOps
  133. def removeAll(cookies: TraversableOnce[String]): Unit

    Removes multiple cookies from this map.

  134. def removeCookie(name: String): CookieMap.this.type

    Deletes all cookies with the given name from this map.

    Deletes all cookies with the given name from this map.

    Attributes
    protected
    Definition Classes
    CookieMapCookieMapVersionSpecific
  135. def removeCookies(xs: TraversableOnce[String]): CookieMap.this.type
    Attributes
    protected
    Definition Classes
    CookieMapCookieMapVersionSpecific
  136. def result(): Map[String, Cookie]
    Definition Classes
    MapOps → Builder
  137. def reversed: Iterable[(String, Cookie)]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  138. def rewriteCookieHeaders(): Unit
    Attributes
    protected
  139. def runWith[U](action: (Cookie) => U): (String) => Boolean
    Definition Classes
    PartialFunction
  140. def scan[B >: (String, Cookie)](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  141. def scanLeft[B](z: B)(op: (B, (String, Cookie)) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  142. def scanRight[B](z: B)(op: ((String, Cookie), B) => B): Iterable[B]
    Definition Classes
    IterableOps
  143. def size: Int
    Definition Classes
    IterableOnceOps
  144. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  145. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  146. final def sizeHint(coll: IterableOnce[_], delta: Int): Unit
    Definition Classes
    Builder
  147. def sizeHint(size: Int): Unit
    Definition Classes
    Builder
  148. final def sizeHintBounded(size: Int, boundingColl: Iterable[_]): Unit
    Definition Classes
    Builder
  149. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  150. def slice(from: Int, until: Int): Map[String, Cookie]
    Definition Classes
    IterableOps → IterableOnceOps
  151. def sliding(size: Int, step: Int): Iterator[Map[String, Cookie]]
    Definition Classes
    IterableOps
  152. def sliding(size: Int): Iterator[Map[String, Cookie]]
    Definition Classes
    IterableOps
  153. def span(p: ((String, Cookie)) => Boolean): (Map[String, Cookie], Map[String, Cookie])
    Definition Classes
    IterableOps → IterableOnceOps
  154. def splitAt(n: Int): (Map[String, Cookie], Map[String, Cookie])
    Definition Classes
    IterableOps → IterableOnceOps
  155. def stepper[S <: Stepper[_]](implicit shape: StepperShape[(String, Cookie), S]): S
    Definition Classes
    IterableOnce
  156. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Map → Iterable
  157. def subtractAll(names: IterableOnce[String]): CookieMap.this.type
    Definition Classes
    CookieMapVersionSpecific → Shrinkable
  158. def subtractOne(name: String): CookieMap.this.type
    Definition Classes
    CookieMapVersionSpecific → Shrinkable
  159. def sum[B >: (String, Cookie)](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  160. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  161. def tail: Map[String, Cookie]
    Definition Classes
    IterableOps
  162. def tails: Iterator[Map[String, Cookie]]
    Definition Classes
    IterableOps
  163. def take(n: Int): Map[String, Cookie]
    Definition Classes
    IterableOps → IterableOnceOps
  164. def takeRight(n: Int): Map[String, Cookie]
    Definition Classes
    IterableOps
  165. def takeWhile(p: ((String, Cookie)) => Boolean): Map[String, Cookie]
    Definition Classes
    IterableOps → IterableOnceOps
  166. def tapEach[U](f: ((String, Cookie)) => U): Map[String, Cookie]
    Definition Classes
    IterableOps → IterableOnceOps
  167. def to[C1](factory: Factory[(String, Cookie), C1]): C1
    Definition Classes
    IterableOnceOps
  168. def toArray[B >: (String, Cookie)](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  169. final def toBuffer[B >: (String, Cookie)]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  170. def toIndexedSeq: IndexedSeq[(String, Cookie)]
    Definition Classes
    IterableOnceOps
  171. final def toIterable: CookieMap.this.type
    Definition Classes
    Iterable → IterableOps
  172. def toList: List[(String, Cookie)]
    Definition Classes
    IterableOnceOps
  173. def toMap[K, V](implicit ev: <:<[(String, Cookie), (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  174. def toSeq: Seq[(String, Cookie)]
    Definition Classes
    IterableOnceOps
  175. def toSet[B >: (String, Cookie)]: Set[B]
    Definition Classes
    IterableOnceOps
  176. def toString(): String
    Definition Classes
    Map → Function1 → Iterable → AnyRef → Any
  177. def toVector: Vector[(String, Cookie)]
    Definition Classes
    IterableOnceOps
  178. def transpose[B](implicit asIterable: ((String, Cookie)) => Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  179. def unapply(a: String): Option[Cookie]
    Definition Classes
    PartialFunction
  180. def unzip[A1, A2](implicit asPair: ((String, Cookie)) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  181. def unzip3[A1, A2, A3](implicit asTriple: ((String, Cookie)) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  182. def update(key: String, value: Cookie): Unit
    Definition Classes
    MapOps
  183. def updateWith(key: String)(remappingFunction: (Option[Cookie]) => Option[Cookie]): Option[Cookie]
    Definition Classes
    MapOps
  184. def valueStepper[S <: Stepper[_]](implicit shape: StepperShape[Cookie, S]): S
    Definition Classes
    MapOps
  185. def values: Iterable[Cookie]
    Definition Classes
    MapOps
  186. def valuesIterator: Iterator[Cookie]
    Definition Classes
    MapOps
  187. def view: MapView[String, Cookie]
    Definition Classes
    MapOps → IterableOps
  188. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  189. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  190. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  191. def withDefault(d: (String) => Cookie): Map[String, Cookie]
    Definition Classes
    Map
  192. def withDefaultValue(d: Cookie): Map[String, Cookie]
    Definition Classes
    Map
  193. def withFilter(p: ((String, Cookie)) => Boolean): WithFilter[String, Cookie, [x]Iterable[x], [x, y]Map[x, y]]
    Definition Classes
    MapFactoryDefaults → IterableOps
  194. def zip[B](that: IterableOnce[B]): Iterable[((String, Cookie), B)]
    Definition Classes
    IterableOps
  195. def zipAll[A1 >: (String, Cookie), B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  196. def zipWithIndex: Iterable[((String, Cookie), Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def +[V1 >: Cookie](elem1: (String, V1), elem2: (String, V1), elems: (String, V1)*): Map[String, V1]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ with an explicit collection argument instead of + with varargs

  2. def +[V1 >: Cookie](kv: (String, V1)): Map[String, V1]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Map or fall back to Map.concat.

  3. def ++:[V1 >: Cookie](that: IterableOnce[(String, V1)]): Map[String, V1]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  4. def ++:[B >: (String, Cookie)](that: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  5. final def +=(elem1: (String, Cookie), elem2: (String, Cookie), elems: (String, Cookie)*): CookieMap.this.type
    Definition Classes
    Growable
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ++= aka addAll instead of varargs +=; infix operations with an operand of multiple args will be deprecated

  6. final def -(key1: String, key2: String, keys: String*): Map[String, Cookie]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -- or removeAll on an immutable Map

  7. final def -(key: String): Map[String, Cookie]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use - or remove on an immutable Map

  8. def --(keys: IterableOnce[String]): Map[String, Cookie]
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Map.

  9. def -=(elem1: String, elem2: String, elems: String*): CookieMap.this.type
    Definition Classes
    Shrinkable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.3) Use --= aka subtractAll instead of varargs -=; infix operations with an operand of multiple args will be deprecated

  10. final def /:[B](z: B)(op: (B, (String, Cookie)) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  11. final def :\[B](z: B)(op: ((String, Cookie), B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  12. def aggregate[B](z: => B)(seqop: (B, (String, Cookie)) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  13. def companion: IterableFactory[[_]Iterable[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding() @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  14. final def copyToBuffer[B >: (String, Cookie)](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  15. def filterKeys(p: (String) => Boolean): MapView[String, Cookie]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.filterKeys(f). A future version will include a strict version of this method (for now, .view.filterKeys(p).toMap).

  16. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  17. def mapValues[W](f: (Cookie) => W): MapView[String, W]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.mapValues(f). A future version will include a strict version of this method (for now, .view.mapValues(f).toMap).

  18. final def repr: Map[String, Cookie]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  19. final def retain(p: (String, Cookie) => Boolean): CookieMap.this.type
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use filterInPlace instead

  20. def seq: CookieMap.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  21. final def toIterator: Iterator[(String, Cookie)]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  22. final def toStream: Stream[(String, Cookie)]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  23. final def toTraversable: Traversable[(String, Cookie)]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  24. final def transform(f: (String, Cookie) => Cookie): CookieMap.this.type
    Definition Classes
    MapOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use mapValuesInPlace instead

  25. def updated[V1 >: Cookie](key: String, value: V1): Map[String, V1]
    Definition Classes
    MapOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use m.clone().addOne((k,v)) instead of m.updated(k, v)

  26. def view(from: Int, until: Int): View[(String, Cookie)]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

Inherited from Map[String, Cookie]

Inherited from MapOps[String, Cookie, Map, Map[String, Cookie]]

Inherited from Shrinkable[String]

Inherited from Builder[(String, Cookie), Map[String, Cookie]]

Inherited from Growable[(String, Cookie)]

Inherited from Clearable

Inherited from Cloneable[Map[String, Cookie]]

Inherited from Cloneable

Inherited from Map[String, Cookie]

Inherited from Equals

Inherited from MapFactoryDefaults[String, Cookie, [x, y]Map[x, y], [x]Iterable[x]]

Inherited from MapOps[String, Cookie, [_, _]Map[_, _], Map[String, Cookie]]

Inherited from PartialFunction[String, Cookie]

Inherited from (String) => Cookie

Inherited from Iterable[(String, Cookie)]

Inherited from Iterable[(String, Cookie)]

Inherited from IterableFactoryDefaults[(String, Cookie), [x]Iterable[x]]

Inherited from IterableOps[(String, Cookie), [_]Iterable[_], Map[String, Cookie]]

Inherited from IterableOnceOps[(String, Cookie), [_]Iterable[_], Map[String, Cookie]]

Inherited from IterableOnce[(String, Cookie)]

Inherited from AnyRef

Inherited from Any

Ungrouped