Packages

c

slick.relational

TypeMappingResultConverter

final case class TypeMappingResultConverter[M <: ResultConverterDomain, T, C](child: ResultConverter[M, C], toBase: (T) => C, toMapped: (C) => T) extends ResultConverter[M, T] with Product with Serializable

Source
ResultConverter.scala
Linear Supertypes
Serializable, Product, Equals, ResultConverter[M, T], Dumpable, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TypeMappingResultConverter
  2. Serializable
  3. Product
  4. Equals
  5. ResultConverter
  6. Dumpable
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new TypeMappingResultConverter(child: ResultConverter[M, C], toBase: (T) => C, toMapped: (C) => T)

Value Members

  1. val child: ResultConverter[M, C]
  2. def getDumpInfo: DumpInfo

    Return the name, main info, attribute info and named children

    Return the name, main info, attribute info and named children

    Definition Classes
    TypeMappingResultConverterResultConverterDumpable
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. def read(pr: Reader): T
  5. def set(value: T, pp: Writer): Unit
  6. val toBase: (T) => C
  7. val toMapped: (C) => T
  8. def toString(): String
    Definition Classes
    ResultConverter → AnyRef → Any
  9. def update(value: T, pr: Updater): Unit
  10. def width: Int

    The width of this converter (in columns), corresponding to the number of columns that will be read or written by it.

    The width of this converter (in columns), corresponding to the number of columns that will be read or written by it.

    Definition Classes
    TypeMappingResultConverterResultConverter