entitytled.EntityBuilderComponent

AbstractEntityCollectionBuilder

abstract class AbstractEntityCollectionBuilder[T <: (EntityBuilderComponent.this)#EntityTable[E, I], E <: (EntityBuilderComponent.this)#Entity[E, I], I] extends AnyRef

Used to build a collection of entities along with possible includables.

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

Instance Constructors

  1. new AbstractEntityCollectionBuilder()(implicit ev: scala.slick.driver.JdbcProfile.SimpleQL.BaseColumnType[I])

Abstract Value Members

  1. abstract val query: scala.slick.driver.JdbcProfile.SimpleQL.Query[T, E, Seq]

    The base query representing the collection of entities.

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def drop(num: Int): (EntityBuilderComponent.this)#EntityCollectionBuilder[T, E, I]

    Select all elements except the first num ones.

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

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

    Definition Classes
    AnyRef → Any
  11. def filter[C <: scala.slick.driver.JdbcProfile.SimpleQL.Column[_]](f: (T) ⇒ C)(implicit wt: CanBeQueryCondition[C]): (EntityBuilderComponent.this)#EntityCollectionBuilder[T, E, I]

    Narrows the query to only those entities that satisfy the predicate.

  12. def filterNot[C <: scala.slick.driver.JdbcProfile.SimpleQL.Column[_]](f: (T) ⇒ C)(implicit wt: CanBeQueryCondition[C]): (EntityBuilderComponent.this)#EntityCollectionBuilder[T, E, I]

    Narrows the query to only those entities that do not satisfy the predicate.

  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def find(id: I)(implicit session: scala.slick.driver.JdbcProfile.SimpleQL.Session): Option[E]

    Returns the entity with the given ID wrapped in Some, or None if no such entity exists.

  15. def firstOption()(implicit session: scala.slick.driver.JdbcProfile.SimpleQL.Session): Option[E]

    Return the first entity of the result set wrapped in Some, or None if the result set is empty.

  16. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  18. def include(include: (EntityBuilderComponent.this)#Includable[T, E]*): (EntityBuilderComponent.this)#EntityCollectionBuilder[T, E, I]

    Include includables on the entities in the result set.

  19. val includes: List[(EntityBuilderComponent.this)#Includable[T, E]]

    The includables that should be included with the resulting entities.

  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. def list()(implicit session: scala.slick.driver.JdbcProfile.SimpleQL.Session): Seq[E]

    Returns a list of the entities in the result set.

  22. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  25. def sortBy[C](f: (T) ⇒ C)(implicit arg0: (C) ⇒ Ordered): (EntityBuilderComponent.this)#EntityCollectionBuilder[T, E, I]

    Sort this query according to a function which extracts the ordering criteria from the entities.

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

    Definition Classes
    AnyRef
  27. def take(num: Int): (EntityBuilderComponent.this)#EntityCollectionBuilder[T, E, I]

    Select the first num elements.

  28. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped