Object

anorm

Macro

Related Doc: package anorm

Permalink

object Macro

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

Type Members

  1. trait ColumnNaming extends (String) ⇒ String

    Permalink

    Naming strategy, to map each class property to the corresponding column.

  2. trait Discriminate extends (String) ⇒ String

    Permalink
  3. trait DiscriminatorNaming extends (String) ⇒ String

    Permalink
  4. final class Placeholder extends AnyRef

    Permalink

    Only for internal purposes

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object ColumnNaming

    Permalink

    Naming companion

  5. object Discriminate

    Permalink
  6. object DiscriminatorNaming

    Permalink
  7. object Placeholder

    Permalink

    Only for internal purposes

  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. macro def indexedParser[T]: RowParser[T]

    Permalink

    Returns a row parser generated for a case class T, getting column values by position.

    Returns a row parser generated for a case class T, getting column values by position.

    T

    the type of case class

    import anorm.{ Macros, RowParser }
    val p: RowParser[YourCaseClass] = Macros.indexedParser[YourCaseClass]
  16. def indexedParserImpl[T](c: Context)(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[T]

    Permalink
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. macro def namedParser[T](naming: ColumnNaming): RowParser[T]

    Permalink

    Returns a row parser generated for a case class T, getting column values by name.

    Returns a row parser generated for a case class T, getting column values by name.

    T

    the type of case class

    naming

    the column naming, to resolve the column name for each case class property

    import anorm.{ Macros, RowParser }
    val p: RowParser[YourCaseClass] = Macros.namedParser[YourCaseClass]
  19. macro def namedParser[T]: RowParser[T]

    Permalink

    Returns a row parser generated for a case class T, getting column values by name.

    Returns a row parser generated for a case class T, getting column values by name.

    T

    the type of case class

    import anorm.{ Macros, RowParser }
    val p: RowParser[YourCaseClass] = Macros.namedParser[YourCaseClass]
  20. def namedParserImpl[T](c: Context)(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[T]

    Permalink
  21. def namedParserImpl1[T](c: Context)(naming: scala.reflect.macros.whitebox.Context.Expr[ColumnNaming])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[T]

    Permalink
  22. def namedParserImpl2[T](c: Context)(names: scala.reflect.macros.whitebox.Context.Expr[String]*)(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[T]

    Permalink
  23. def namedParserImpl3[T](c: Context)(naming: scala.reflect.macros.whitebox.Context.Expr[ColumnNaming], names: scala.reflect.macros.whitebox.Context.Expr[String]*)(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[T]

    Permalink
  24. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. macro def offsetParser[T](offset: Int): RowParser[T]

    Permalink

    Returns a row parser generated for a case class T, getting column values by position, with an offset.

    Returns a row parser generated for a case class T, getting column values by position, with an offset.

    T

    the type of case class

    offset

    the offset of column to be considered by the parser

    import anorm.{ Macros, RowParser }
    val p: RowParser[YourCaseClass] = Macros.offsetParser[YourCaseClass](2)
  28. def offsetParserImpl[T](c: Context)(offset: scala.reflect.macros.whitebox.Context.Expr[Int])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[T]

    Permalink
  29. macro def parser[T](naming: ColumnNaming, names: String*): RowParser[T]

    Permalink

    Returns a row parser generated for a case class T, getting column values according the property names.

    Returns a row parser generated for a case class T, getting column values according the property names.

    T

    the type of case class

    naming

    the column naming, to resolve the column name for each case class property

    names

    the names of the columns corresponding to the case class properties

    import anorm.{ Macros, RowParser }
    val p: RowParser[YourCaseClass] =
      Macros.parser[YourCaseClass]("foo", "loremIpsum")
  30. macro def parser[T](names: String*): RowParser[T]

    Permalink

    Returns a row parser generated for a case class T, getting column values according the property names.

    Returns a row parser generated for a case class T, getting column values according the property names.

    T

    the type of case class

    names

    the names of the columns corresponding to the case class properties

    import anorm.{ Macros, RowParser }
    val p: RowParser[YourCaseClass] =
      Macros.parser[YourCaseClass]("foo", "bar")
  31. macro def sealedParser[T](naming: DiscriminatorNaming, discriminate: Discriminate): RowParser[T]

    Permalink

    Returns a row parser generated for a sealed class family.

    Returns a row parser generated for a sealed class family. Each direct known subclasses C must be provided with an appropriate RowParser[C] in the implicit scope.

    T

    the type of the type family (either a sealed trait or abstract class)

    naming

    the naming function for the discriminator column

    discriminate

    the discriminating function applied to each name of the family type

  32. macro def sealedParser[T](discriminate: Discriminate): RowParser[T]

    Permalink

    Returns a row parser generated for a sealed class family.

    Returns a row parser generated for a sealed class family. Each direct known subclasses C must be provided with an appropriate RowParser[C] in the implicit scope.

    T

    the type of the type family (either a sealed trait or abstract class)

    discriminate

    the discriminating function applied to each name of the family type

  33. macro def sealedParser[T](naming: DiscriminatorNaming): RowParser[T]

    Permalink

    Returns a row parser generated for a sealed class family.

    Returns a row parser generated for a sealed class family. Each direct known subclasses C must be provided with an appropriate RowParser[C] in the implicit scope.

    T

    the type of the type family (either a sealed trait or abstract class)

    naming

    the naming function for the discriminator column

  34. macro def sealedParser[T]: RowParser[T]

    Permalink

    Returns a row parser generated for a sealed class family.

    Returns a row parser generated for a sealed class family. Each direct known subclasses C must be provided with an appropriate RowParser[C] in the implicit scope.

    The default naming is used.

    T

    the type of the type family (either a sealed trait or abstract class)

  35. def sealedParserImpl[T](c: Context)(naming: scala.reflect.macros.whitebox.Context.Expr[DiscriminatorNaming], discriminate: scala.reflect.macros.whitebox.Context.Expr[Discriminate])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[RowParser[T]]

    Permalink
  36. def sealedParserImpl1[T](c: Context)(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[RowParser[T]]

    Permalink
  37. def sealedParserImpl2[T](c: Context)(naming: scala.reflect.macros.whitebox.Context.Expr[DiscriminatorNaming])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[RowParser[T]]

    Permalink
  38. def sealedParserImpl3[T](c: Context)(discriminate: scala.reflect.macros.whitebox.Context.Expr[Discriminate])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[RowParser[T]]

    Permalink
  39. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  40. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  41. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def namedParserImpl_[T](c: Context)(names: scala.reflect.macros.whitebox.Context.Expr[String]*)(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[T]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.2) Use namedParserImpl2

Inherited from AnyRef

Inherited from Any

Ungrouped