c

org.scalatra.servlet

RichServletContext

case class RichServletContext(sc: ServletContext) extends AttributesMap with Product with Serializable

Extension methods to the standard ServletContext.

Linear Supertypes
Serializable, Serializable, Product, AttributesMap, MutableMapWithIndifferentAccess[Any], MapWithIndifferentAccess[Any], Map[String, Any], MapLike[String, Any, Map[String, Any]], Cloneable[Map[String, Any]], Cloneable, Cloneable, Shrinkable[String], Builder[(String, Any), Map[String, Any]], Growable[(String, Any)], Clearable, Map[String, Any], MapLike[String, Any, Map[String, Any]], Subtractable[String, Map[String, Any]], PartialFunction[String, Any], (String) ⇒ Any, GenMap[String, Any], GenMapLike[String, Any, Map[String, Any]], Iterable[(String, Any)], Iterable[(String, Any)], IterableLike[(String, Any), Map[String, Any]], Equals, GenIterable[(String, Any)], GenIterableLike[(String, Any), Map[String, Any]], Traversable[(String, Any)], Mutable, Traversable[(String, Any)], GenTraversable[(String, Any)], GenericTraversableTemplate[(String, Any), Iterable], TraversableLike[(String, Any), Map[String, Any]], GenTraversableLike[(String, Any), Map[String, Any]], Parallelizable[(String, Any), ParMap[String, Any]], TraversableOnce[(String, Any)], GenTraversableOnce[(String, Any)], FilterMonadic[(String, Any), Map[String, Any]], HasNewBuilder[(String, Any), Map[String, Any]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RichServletContext
  2. Serializable
  3. Serializable
  4. Product
  5. AttributesMap
  6. MutableMapWithIndifferentAccess
  7. MapWithIndifferentAccess
  8. Map
  9. MapLike
  10. Cloneable
  11. Cloneable
  12. Cloneable
  13. Shrinkable
  14. Builder
  15. Growable
  16. Clearable
  17. Map
  18. MapLike
  19. Subtractable
  20. PartialFunction
  21. Function1
  22. GenMap
  23. GenMapLike
  24. Iterable
  25. Iterable
  26. IterableLike
  27. Equals
  28. GenIterable
  29. GenIterableLike
  30. Traversable
  31. Mutable
  32. Traversable
  33. GenTraversable
  34. GenericTraversableTemplate
  35. TraversableLike
  36. GenTraversableLike
  37. Parallelizable
  38. TraversableOnce
  39. GenTraversableOnce
  40. FilterMonadic
  41. HasNewBuilder
  42. AnyRef
  43. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RichServletContext(sc: ServletContext)

Type Members

  1. class DefaultKeySet extends AbstractSet[K] with Set[K] with Serializable
    Attributes
    protected
    Definition Classes
    MapLike
  2. class DefaultValuesIterable extends AbstractIterable[V] with Iterable[V] with Serializable
    Attributes
    protected
    Definition Classes
    MapLike
  3. class FilteredKeys extends AbstractMap[K, V] with DefaultMap[K, V]
    Attributes
    protected
    Definition Classes
    MapLike
  4. class MappedValues[W] extends AbstractMap[K, W] with DefaultMap[K, W]
    Attributes
    protected
    Definition Classes
    MapLike
  5. type Self = Map[String, Any]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  6. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +[V1 >: Any](elem1: (String, V1), elem2: (String, V1), elems: (String, V1)*): Map[String, V1]
    Definition Classes
    MapLike → MapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) + creates a new map. Use += to add an element to this map and return that map itself.

  4. def +[V1 >: Any](kv: (String, V1)): Map[String, V1]
    Definition Classes
    MapLike → MapLike → GenMapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) + creates a new map. Use += to add an element to this map and return that map itself.

  5. def ++[V1 >: Any](xs: GenTraversableOnce[(String, V1)]): Map[String, V1]
    Definition Classes
    MapLike → MapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) ++ creates a new map. Use ++= to add an element to this map and return that map itself.

  6. def ++[B >: (String, Any), That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  7. def ++:[B >: (String, Any), That](that: Traversable[B])(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That
    Definition Classes
    TraversableLike
  8. def ++:[B >: (String, Any), That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That
    Definition Classes
    TraversableLike
  9. def ++=(xs: TraversableOnce[(String, Any)]): RichServletContext.this.type
    Definition Classes
    Growable
  10. def +=(kv: (String, Any)): RichServletContext.this.type

    Sets an attribute on the underlying servlet object.

    Sets an attribute on the underlying servlet object.

    kv

    the key/value pair. If the value is null, has the same effect as calling -=(kv._1).

    returns

    the map itself

    Definition Classes
    AttributesMap → MapLike → Builder → Growable
  11. def +=(elem1: (String, Any), elem2: (String, Any), elems: (String, Any)*): RichServletContext.this.type
    Definition Classes
    Growable
  12. def -(elem1: String, elem2: String, elems: String*): Map[String, Any]
    Definition Classes
    MapLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new map. Use -= to remove an element from this map and return that map itself.

  13. def -(key: String): Map[String, Any]
    Definition Classes
    MapLike → MapLike → Subtractable → GenMapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new map. Use -= to remove an element from this map and return that map itself.

  14. def --(xs: GenTraversableOnce[String]): Map[String, Any]
    Definition Classes
    MapLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) -- creates a new map. Use --= to remove an element from this map and return that map itself.

  15. def --=(xs: TraversableOnce[String]): RichServletContext.this.type
    Definition Classes
    Shrinkable
  16. def -=(key: String): RichServletContext.this.type

    Removes an attribute from the underlying servlet object.

    Removes an attribute from the underlying servlet object.

    key

    the key to remove

    returns

    the map itself

    Definition Classes
    AttributesMap → MapLike → Shrinkable
  17. def -=(elem1: String, elem2: String, elems: String*): RichServletContext.this.type
    Definition Classes
    Shrinkable
  18. def /:[B](z: B)(op: (B, (String, Any)) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  19. def :\[B](z: B)(op: ((String, Any), B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  20. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  21. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    MapLike → TraversableOnce
  22. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  23. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  24. def aggregate[B](z: ⇒ B)(seqop: (B, (String, Any)) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  25. def andThen[C](k: (Any) ⇒ C): PartialFunction[String, C]
    Definition Classes
    PartialFunction → Function1
  26. def apply(key: Symbol): Any
    Definition Classes
    MapWithIndifferentAccess
  27. def apply(key: String): Any
    Definition Classes
    MapLike → GenMapLike → Function1
  28. def applyOrElse[K1 <: String, V1 >: Any](x: K1, default: (K1) ⇒ V1): V1
    Definition Classes
    MapLike → PartialFunction
  29. def as[T](key: String)(implicit mf: Manifest[T], converter: TypeConverter[Any, T]): T

    Return the attribute associated with the key or throw an exception when nothing found

    Return the attribute associated with the key or throw an exception when nothing found

    T

    The type of the value

    key

    The key to find

    returns

    an value for the attributed associated with the key in the underlying servlet object, or throw an exception if the key doesn't exist

    Definition Classes
    AttributesMap
  30. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  31. def attributes: ServletContext
    Attributes
    protected
    Definition Classes
    RichServletContextAttributesMap
  32. def canEqual(that: Any): Boolean
    Definition Classes
    IterableLike → Equals
  33. def clear(): Unit
    Definition Classes
    MapLike → Builder → Growable → Clearable
  34. def clone(): Map[String, Any]
    Definition Classes
    MapLike → Cloneable → AnyRef
  35. def collect[B, That](pf: PartialFunction[(String, Any), B])(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  36. def collectFirst[B](pf: PartialFunction[(String, Any), B]): Option[B]
    Definition Classes
    TraversableOnce
  37. def companion: GenericCompanion[Iterable]
    Definition Classes
    Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  38. def compose[A](g: (A) ⇒ String): (A) ⇒ Any
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  39. def contains(key: String): Boolean
    Definition Classes
    MapLike → GenMapLike
  40. def contextPath: String
  41. def copyToArray[B >: (String, Any)](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  42. def copyToArray[B >: (String, Any)](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  43. def copyToArray[B >: (String, Any)](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def copyToBuffer[B >: (String, Any)](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  45. def count(p: ((String, Any)) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def default(key: String): Any
    Definition Classes
    MapLike → GenMapLike
  47. def drop(n: Int): Map[String, Any]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  48. def dropRight(n: Int): Map[String, Any]
    Definition Classes
    IterableLike
  49. def dropWhile(p: ((String, Any)) ⇒ Boolean): Map[String, Any]
    Definition Classes
    TraversableLike → GenTraversableLike
  50. def empty: Map[String, Any]
    Definition Classes
    Map → Map → MapLike
  51. def environment: String

    A free form string representing the environment.

    A free form string representing the environment. org.scalatra.Environment is looked up as a system property, and if absent, as an init parameter. The default value is DEVELOPMENT.

  52. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  53. def equals(that: Any): Boolean
    Definition Classes
    GenMapLike → Equals → AnyRef → Any
  54. def exists(p: ((String, Any)) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  55. def filter(p: ((String, Any)) ⇒ Boolean): Map[String, Any]
    Definition Classes
    TraversableLike → GenTraversableLike
  56. def filterKeys(p: (String) ⇒ Boolean): Map[String, Any]
    Definition Classes
    MapLike → GenMapLike
  57. def filterNot(p: ((String, Any)) ⇒ Boolean): Map[String, Any]
    Definition Classes
    MapLike → TraversableLike → GenTraversableLike
  58. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  59. def find(p: ((String, Any)) ⇒ Boolean): Option[(String, Any)]
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  60. def flatMap[B, That](f: ((String, Any)) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  61. def flatten[B](implicit asTraversable: ((String, Any)) ⇒ GenTraversableOnce[B]): Iterable[B]
    Definition Classes
    GenericTraversableTemplate
  62. def fold[A1 >: (String, Any)](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  63. def foldLeft[B](z: B)(op: (B, (String, Any)) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  64. def foldRight[B](z: B)(op: ((String, Any), B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  65. def forall(p: ((String, Any)) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  66. def foreach[U](f: ((String, Any)) ⇒ U): Unit
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  67. def genericBuilder[B]: Builder[B, Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
  68. def get(key: String): Option[Any]

    Optionally returns the attribute associated with the key

    Optionally returns the attribute associated with the key

    returns

    an option value containing the attribute associated with the key in the underlying servlet object, or None if none exists.

    Definition Classes
    AttributesMap → MapLike → GenMapLike
  69. def get(key: Symbol): Option[Any]
    Definition Classes
    MapWithIndifferentAccess
  70. def getAs[T](key: String)(implicit mf: Manifest[T], converter: TypeConverter[Any, T]): Option[T]

    Optionally return and type cast the attribute associated with the key

    Optionally return and type cast the attribute associated with the key

    T

    The type of the value

    key

    The key to find

    returns

    an option value containing the attributed associated with the key in the underlying servlet object, or None if none exists

    Definition Classes
    AttributesMap
  71. def getAsOrElse[T](key: String, default: ⇒ T)(implicit mf: Manifest[T], converter: TypeConverter[Any, T]): T

    Return the attribute associated with the key or throw an exception when nothing found

    Return the attribute associated with the key or throw an exception when nothing found

    T

    The type of the value

    key

    The key to find

    returns

    an value for the attributed associated with the key in the underlying servlet object, or throw an exception if the key doesn't exist

    Definition Classes
    AttributesMap
  72. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  73. def getOrElse[B1 >: Any](key: Symbol, default: ⇒ B1): B1
    Definition Classes
    MapWithIndifferentAccess
  74. def getOrElse[V1 >: Any](key: String, default: ⇒ V1): V1
    Definition Classes
    MapLike → GenMapLike
  75. def getOrElseUpdate(key: String, op: ⇒ Any): Any
    Definition Classes
    MapLike
  76. def groupBy[K](f: ((String, Any)) ⇒ K): Map[K, Map[String, Any]]
    Definition Classes
    TraversableLike → GenTraversableLike
  77. def grouped(size: Int): Iterator[Map[String, Any]]
    Definition Classes
    IterableLike
  78. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  79. def hashCode(): Int
    Definition Classes
    GenMapLike → AnyRef → Any
  80. def head: (String, Any)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  81. def headOption: Option[(String, Any)]
    Definition Classes
    TraversableLike → GenTraversableLike
  82. def init: Map[String, Any]
    Definition Classes
    TraversableLike → GenTraversableLike
  83. def inits: Iterator[Map[String, Any]]
    Definition Classes
    TraversableLike
  84. def isDefinedAt(key: String): Boolean
    Definition Classes
    MapLike → GenMapLike → PartialFunction
  85. def isEmpty: Boolean
    Definition Classes
    MapLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  86. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  87. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  88. def iterator: Iterator[(String, Any)]

    Creates a new iterator over all attributes in the underlying servlet object.

    Creates a new iterator over all attributes in the underlying servlet object.

    returns

    the new iterator

    Definition Classes
    AttributesMap → MapLike → IterableLike → GenIterableLike
  89. def keySet: Set[String]
    Definition Classes
    MapLike → GenMapLike
  90. def keys: Iterable[String]
    Definition Classes
    MapLike → GenMapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) keys returns Iterable[K] rather than Iterator[K].

  91. def keysIterator: Iterator[String]
    Definition Classes
    MapLike → GenMapLike
  92. def last: (String, Any)
    Definition Classes
    TraversableLike → GenTraversableLike
  93. def lastOption: Option[(String, Any)]
    Definition Classes
    TraversableLike → GenTraversableLike
  94. def lift: (String) ⇒ Option[Any]
    Definition Classes
    PartialFunction
  95. def map[B, That](f: ((String, Any)) ⇒ B)(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  96. def mapResult[NewTo](f: (Map[String, Any]) ⇒ NewTo): Builder[(String, Any), NewTo]
    Definition Classes
    Builder
  97. def mapValues[W](f: (Any) ⇒ W): Map[String, W]
    Definition Classes
    MapLike → GenMapLike
  98. def max[B >: (String, Any)](implicit cmp: Ordering[B]): (String, Any)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def maxBy[B](f: ((String, Any)) ⇒ B)(implicit cmp: Ordering[B]): (String, Any)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def min[B >: (String, Any)](implicit cmp: Ordering[B]): (String, Any)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def minBy[B](f: ((String, Any)) ⇒ B)(implicit cmp: Ordering[B]): (String, Any)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. def mount[T](handlerClass: Class[T], urlPattern: String, loadOnStartup: Int): Unit
  106. def mount[T](handlerClass: Class[T], urlPattern: String): Unit
  107. def mount[T](handlerClass: Class[T], urlPattern: String, name: String, loadOnStartup: Int = 1): Unit
  108. def mount(handler: Handler, urlPattern: String, loadOnStartup: Int): Unit
  109. def mount(handler: Handler, urlPattern: String): Unit
  110. def mount(handler: Handler, urlPattern: String, name: String, loadOnStartup: Int): Unit

    Mounts a handler to the servlet context.

    Mounts a handler to the servlet context. Must be an HttpServlet or a Filter.

    handler

    the handler to mount

    urlPattern

    the URL pattern to mount. Will be appended with \/\* if not already, as path-mapping is the most natural fit for Scalatra. If you don't want path mapping, use the native Servlet API.

    name

    the name of the handler

  111. def mount(handler: Handler, urlPattern: String, name: String): Unit

    Mounts a handler to the servlet context.

    Mounts a handler to the servlet context. Must be an HttpServlet or a Filter.

    handler

    the handler to mount

    urlPattern

    the URL pattern to mount. Will be appended with \/\* if not already, as path-mapping is the most natural fit for Scalatra. If you don't want path mapping, use the native Servlet API.

    name

    the name of the handler

  112. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  113. def newBuilder: Builder[(String, Any), Map[String, Any]]
    Attributes
    protected[this]
    Definition Classes
    MapLike → MapLike → TraversableLike → HasNewBuilder
  114. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. final def notify(): Unit
    Definition Classes
    AnyRef
  116. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  117. def orElse[A1 <: String, B1 >: Any](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  118. def par: ParMap[String, Any]
    Definition Classes
    Parallelizable
  119. def parCombiner: Combiner[(String, Any), ParMap[String, Any]]
    Attributes
    protected[this]
    Definition Classes
    MapLike → MapLike → TraversableLike → Parallelizable
  120. def partition(p: ((String, Any)) ⇒ Boolean): (Map[String, Any], Map[String, Any])
    Definition Classes
    TraversableLike → GenTraversableLike
  121. def product[B >: (String, Any)](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  122. def put(key: String, value: Any): Option[Any]
    Definition Classes
    MapLike
  123. def reduce[A1 >: (String, Any)](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def reduceLeft[B >: (String, Any)](op: (B, (String, Any)) ⇒ B): B
    Definition Classes
    TraversableOnce
  125. def reduceLeftOption[B >: (String, Any)](op: (B, (String, Any)) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def reduceOption[A1 >: (String, Any)](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def reduceRight[B >: (String, Any)](op: ((String, Any), B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  128. def reduceRightOption[B >: (String, Any)](op: ((String, Any), B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def remove(key: String): Option[Any]
    Definition Classes
    MapLike
  130. def repr: Map[String, Any]
    Definition Classes
    TraversableLike → GenTraversableLike
  131. def resource(req: HttpServletRequest): Option[URL]

    Optionally returns the resource mapped to the request's path.

    Optionally returns the resource mapped to the request's path.

    req

    the request

    returns

    the resource located at the result of concatenating the request's servlet path and its path info, or None if there is no resource at that path.

  132. def resource(path: String): Option[URL]

    Optionally returns a URL to the resource mapped to the given path.

    Optionally returns a URL to the resource mapped to the given path. This is a wrapper around getResource.

    path

    the path to the resource

    returns

    the resource located at the path, or None if there is no resource at that path.

  133. def result(): Map[String, Any]
    Definition Classes
    MapLike → Builder
  134. def retain(p: (String, Any) ⇒ Boolean): RichServletContext.this.type
    Definition Classes
    MapLike
  135. def reversed: List[(String, Any)]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  136. def runWith[U](action: (Any) ⇒ U): (String) ⇒ Boolean
    Definition Classes
    PartialFunction
  137. def sameElements[B >: (String, Any)](that: GenIterable[B]): Boolean
    Definition Classes
    IterableLike → GenIterableLike
  138. val sc: ServletContext
  139. def scan[B >: (String, Any), That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Map[String, Any], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  140. def scanLeft[B, That](z: B)(op: (B, (String, Any)) ⇒ B)(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  141. def scanRight[B, That](z: B)(op: ((String, Any), B) ⇒ B)(implicit bf: CanBuildFrom[Map[String, Any], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  142. def seq: Map[String, Any]
    Definition Classes
    Map → Map → GenMap → GenMapLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  143. def size: Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  144. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit
    Definition Classes
    Builder
  145. def sizeHint(coll: TraversableLike[_, _]): Unit
    Definition Classes
    Builder
  146. def sizeHint(size: Int): Unit
    Definition Classes
    Builder
  147. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit
    Definition Classes
    Builder
  148. def sizeHintIfCheap: Int
    Attributes
    protected[scala.collection]
    Definition Classes
    GenTraversableOnce
  149. def slice(from: Int, until: Int): Map[String, Any]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  150. def sliding(size: Int, step: Int): Iterator[Map[String, Any]]
    Definition Classes
    IterableLike
  151. def sliding(size: Int): Iterator[Map[String, Any]]
    Definition Classes
    IterableLike
  152. def span(p: ((String, Any)) ⇒ Boolean): (Map[String, Any], Map[String, Any])
    Definition Classes
    TraversableLike → GenTraversableLike
  153. def splitAt(n: Int): (Map[String, Any], Map[String, Any])
    Definition Classes
    TraversableLike → GenTraversableLike
  154. def stringPrefix: String
    Definition Classes
    MapLike → TraversableLike → GenTraversableLike
  155. def sum[B >: (String, Any)](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  156. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  157. def tail: Map[String, Any]
    Definition Classes
    TraversableLike → GenTraversableLike
  158. def tails: Iterator[Map[String, Any]]
    Definition Classes
    TraversableLike
  159. def take(n: Int): Map[String, Any]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  160. def takeRight(n: Int): Map[String, Any]
    Definition Classes
    IterableLike
  161. def takeWhile(p: ((String, Any)) ⇒ Boolean): Map[String, Any]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  162. def thisCollection: Iterable[(String, Any)]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  163. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (String, Any), Col[(String, Any)]]): Col[(String, Any)]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  164. def toArray[B >: (String, Any)](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  165. def toBuffer[E >: (String, Any)]: Buffer[E]
    Definition Classes
    MapLike → TraversableOnce → GenTraversableOnce
  166. def toCollection(repr: Map[String, Any]): Iterable[(String, Any)]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  167. def toIndexedSeq: IndexedSeq[(String, Any)]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  168. def toIterable: Iterable[(String, Any)]
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  169. def toIterator: Iterator[(String, Any)]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  170. def toList: List[(String, Any)]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  171. def toMap[T, U](implicit ev: <:<[(String, Any), (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  172. def toSeq: Seq[(String, Any)]
    Definition Classes
    MapLike → MapLike → TraversableOnce → GenTraversableOnce
  173. def toSet[B >: (String, Any)]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  174. def toStream: Stream[(String, Any)]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  175. def toString(): String
    Definition Classes
    MapLike → TraversableLike → Function1 → AnyRef → Any
  176. def toTraversable: Traversable[(String, Any)]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  177. def toVector: Vector[(String, Any)]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  178. def transform(f: (String, Any) ⇒ Any): RichServletContext.this.type
    Definition Classes
    MapLike
  179. def transpose[B](implicit asTraversable: ((String, Any)) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  180. def unzip[A1, A2](implicit asPair: ((String, Any)) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    GenericTraversableTemplate
  181. def unzip3[A1, A2, A3](implicit asTriple: ((String, Any)) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    GenericTraversableTemplate
  182. def update(key: Symbol, value: Any): Unit
  183. def update(key: String, value: Any): Unit
    Definition Classes
    MapLike
  184. def updated[V1 >: Any](key: String, value: V1): Map[String, V1]
    Definition Classes
    MapLike → MapLike
  185. def values: Iterable[Any]
    Definition Classes
    MapLike → GenMapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) values returns Iterable[V] rather than Iterator[V].

  186. def valuesIterator: Iterator[Any]
    Definition Classes
    MapLike → GenMapLike
  187. def view(from: Int, until: Int): IterableView[(String, Any), Map[String, Any]]
    Definition Classes
    IterableLike → TraversableLike
  188. def view: IterableView[(String, Any), Map[String, Any]]
    Definition Classes
    IterableLike → TraversableLike
  189. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  190. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  191. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  192. def withDefault(d: (String) ⇒ Any): Map[String, Any]
    Definition Classes
    Map
  193. def withDefaultValue(d: Any): Map[String, Any]
    Definition Classes
    Map
  194. def withFilter(p: ((String, Any)) ⇒ Boolean): FilterMonadic[(String, Any), Map[String, Any]]
    Definition Classes
    TraversableLike → FilterMonadic
  195. def zip[A1 >: (String, Any), B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Map[String, Any], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  196. def zipAll[B, A1 >: (String, Any), That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Map[String, Any], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  197. def zipWithIndex[A1 >: (String, Any), That](implicit bf: CanBuildFrom[Map[String, Any], (A1, Int), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  198. object initParameters extends Map[String, String]

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from AttributesMap

Inherited from MutableMapWithIndifferentAccess[Any]

Inherited from MapWithIndifferentAccess[Any]

Inherited from Map[String, Any]

Inherited from MapLike[String, Any, Map[String, Any]]

Inherited from Cloneable[Map[String, Any]]

Inherited from Cloneable

Inherited from Cloneable

Inherited from Shrinkable[String]

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

Inherited from Growable[(String, Any)]

Inherited from Clearable

Inherited from Map[String, Any]

Inherited from MapLike[String, Any, Map[String, Any]]

Inherited from Subtractable[String, Map[String, Any]]

Inherited from PartialFunction[String, Any]

Inherited from (String) ⇒ Any

Inherited from GenMap[String, Any]

Inherited from GenMapLike[String, Any, Map[String, Any]]

Inherited from Iterable[(String, Any)]

Inherited from Iterable[(String, Any)]

Inherited from IterableLike[(String, Any), Map[String, Any]]

Inherited from Equals

Inherited from GenIterable[(String, Any)]

Inherited from GenIterableLike[(String, Any), Map[String, Any]]

Inherited from Traversable[(String, Any)]

Inherited from Mutable

Inherited from Traversable[(String, Any)]

Inherited from GenTraversable[(String, Any)]

Inherited from GenericTraversableTemplate[(String, Any), Iterable]

Inherited from TraversableLike[(String, Any), Map[String, Any]]

Inherited from GenTraversableLike[(String, Any), Map[String, Any]]

Inherited from Parallelizable[(String, Any), ParMap[String, Any]]

Inherited from TraversableOnce[(String, Any)]

Inherited from GenTraversableOnce[(String, Any)]

Inherited from FilterMonadic[(String, Any), Map[String, Any]]

Inherited from HasNewBuilder[(String, Any), Map[String, Any]]

Inherited from AnyRef

Inherited from Any

Ungrouped