Package

skinny.micro

data

Permalink

package data

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. data
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. type Attributes = AnyRef { ... /* 4 definitions in type refinement */ }

    Permalink

    Structural type for the various Servlet API objects that have attributes.

    Structural type for the various Servlet API objects that have attributes. These include ServletContext, HttpSession, and ServletRequest.

  2. trait AttributesMap extends Map[String, Any] with MutableMapWithIndifferentAccess[Any]

    Permalink

    Adapts attributes from servlet objects (e.g., ServletRequest, HttpSession, ServletContext) to a mutable map.

  3. trait MapWithIndifferentAccess[+B] extends Map[String, B]

    Permalink

    Inspired by Rails' MapWithIndifferentAccess, allows the substitution of symbols for strings as map keys.

    Inspired by Rails' MapWithIndifferentAccess, allows the substitution of symbols for strings as map keys. Note that the map is still keyed with strings; symbols are stored in PermGen, so symbol keys maps should not be used for maps with arbitrary keys. There is no performance gain using symbols. It is here to make our Rubyists feel more at home.

  4. class MultiMap extends Map[String, Seq[String]]

    Permalink

    Map which contains multi values for each key.

  5. trait MultiMapHeadView[A, B] extends Map[A, B]

    Permalink

    View for MultiMap.

  6. class MultiMapHeadViewValueReader[T <: MultiMapHeadView[String, String]] extends ValueReader[T, String]

    Permalink
  7. class MultiParamsValueReader extends ValueReader[MultiParams, Seq[String]]

    Permalink
  8. trait MutableMapWithIndifferentAccess[B] extends MapWithIndifferentAccess[B] with Map[String, B]

    Permalink

    See also

    MapWithIndifferentAccess

  9. trait ParamsValueReaderProperties extends AnyRef

    Permalink

    Properties for params value reader.

  10. class StringMapValueReader extends ValueReader[Map[String, String], String]

    Permalink
  11. trait ValueReader[S, U] extends AnyRef

    Permalink

    Value reader.

Inherited from AnyRef

Inherited from Any

Ungrouped