com.outr.query.orm

LazyList

Related Docs: trait LazyList | package orm

object LazyList

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. LazyList
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. def Empty[T](implicit manifest: Manifest[T]): PreloadedLazyList[T]

  5. def apply[T](values: List[T])(implicit manifest: Manifest[T]): PreloadedLazyList[T]

  6. def apply[T](values: T*)(implicit manifest: Manifest[T]): PreloadedLazyList[T]

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def connect[Origin, Destination, C](originTable: ORMTable[Origin], originFieldName: String, linkingTableDestinationId: Column[C], destinationTable: ORMTable[Destination], destinationFieldName: String, linkingTableOriginId: Column[C])(implicit originManifest: Manifest[Origin], destinationManifest: Manifest[Destination]): Unit

    Connects many-to-many relationship for LazyList.

    Connects many-to-many relationship for LazyList.

    This connects both directions so only needs to be called from one perspective.

    Origin

    the originating object type

    Destination

    the destination object type

    C

    the column type

    originTable

    the origin table

    originFieldName

    the field name representing the LazyList in the origin case class

    linkingTableDestinationId

    the destination id in the linking table

    destinationTable

    the destination table

    destinationFieldName

    the field name representing the LazyList in the destination case class

    linkingTableOriginId

    the origin id in the linking table

    originManifest

    the manifest for the origin

    destinationManifest

    the manifest for the destination

  10. def connect[Origin, ListItem, C](table: ORMTable[Origin], fieldName: String, foreignColumn: Column[C])(implicit manifest: Manifest[ListItem]): Unit

    Connects one-to-many relationship for LazyList.

    Connects one-to-many relationship for LazyList.

    Origin

    the originating object type

    ListItem

    the item type for the LazyList

    C

    the column type

    table

    the origin table that contains the LazyList

    fieldName

    the field name representing the LazyList in the case class

    foreignColumn

    the foreign column for the id of the list items

    manifest

    manifest for the list item

  11. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped