net.liftweb.mapper.ManyToMany

MappedManyToMany

class MappedManyToMany [O <: Mapper[O], K2, T2 <: KeyedMapper[K2, T2]] extends Buffer[T2]

This is the base class to use for fields that track many-to-many relationships.

linear super types: Buffer[T2], BufferLike[T2, Buffer[T2]], Cloneable[Buffer[T2]], Subtractable[T2, Buffer[T2]], Scriptable[T2], Shrinkable[T2], Growable[T2], Seq[T2], Seq[T2], SeqLike[T2, Buffer[T2]], PartialFunction[Int, T2], (Int) ⇒ T2, Iterable[T2], Iterable[T2], IterableLike[T2, Buffer[T2]], Equals, Traversable[T2], Mutable, Traversable[T2], GenericTraversableTemplate[T2, Buffer], TraversableLike[T2, Buffer[T2]], TraversableOnce[T2], FilterMonadic[T2, Buffer[T2]], HasNewBuilder[T2, Buffer[T2]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. MappedManyToMany
  2. Buffer
  3. BufferLike
  4. Cloneable
  5. Subtractable
  6. Scriptable
  7. Shrinkable
  8. Growable
  9. Seq
  10. Seq
  11. SeqLike
  12. PartialFunction
  13. Function1
  14. Iterable
  15. Iterable
  16. IterableLike
  17. Equals
  18. Traversable
  19. Mutable
  20. Traversable
  21. GenericTraversableTemplate
  22. TraversableLike
  23. TraversableOnce
  24. FilterMonadic
  25. HasNewBuilder
  26. AnyRef
  27. Any
Visibility
  1. Public
  2. All
Impl.
  1. Concrete
  2. Abstract

Instance constructors

  1. new MappedManyToMany (joinMeta: MetaMapper[O], thisField: net.liftweb.mapper.MappedForeignKey[ManyToMany.this.K, O, _ <: net.liftweb.mapper.KeyedMapper[_, _]], otherField: MappedForeignKey[K2, O, T2], otherMeta: MetaMapper[T2], qp: QueryParam[O]*)

    joinMeta

    The singleton of the join table

    thisField

    The foreign key in the join table that refers to this mapper's primaryKey.

    otherField

    The foreign key in the join table that refers to the other mapper's primaryKey

    otherMeta

    The singleton of the other mapper

    qp

    Any QueryParams to limit entries in the join table (other than matching thisField to primaryKey) To limit children based on fields in the other table (not the join table), it is currently necessary to point the join mapper to a view which pulls the join table's fields as well as fields of the other table.

Type Members

  1. type Self = Buffer[T2]

    attributes: protected
    definition classes: TraversableLike

Value Members

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

    attributes: final
    definition classes: AnyRef
  2. def != (arg0: Any) : Boolean

    o != arg0 is the same as !(o == (arg0)).

    o != arg0 is the same as !(o == (arg0)).

    arg0

    the object to compare against this object for dis-equality.

    returns

    false if the receiver object is equivalent to the argument; true otherwise.

    attributes: final
    definition classes: Any
  3. def ## () : Int

    attributes: final
    definition classes: AnyRef → Any
  4. def $asInstanceOf [T0] () : T0

    attributes: final
    definition classes: AnyRef
  5. def $isInstanceOf [T0] () : Boolean

    attributes: final
    definition classes: AnyRef
  6. def + (elem1: T2, elem2: T2, elems: T2*) : Buffer[T2]

    definition classes: BufferLike
      deprecated:
    1. Use ++= instead if you intend to add by side effect to an existing collection. Use clone() ++=' if you intend to create a new collection.

  7. def + (elem: T2) : Buffer[T2]

    definition classes: BufferLike
      deprecated:
    1. Use += instead if you intend to add by side effect to an existing collection. Use clone() +=' if you intend to create a new collection.

  8. def ++ (xs: TraversableOnce[T2]) : Buffer[T2]

    definition classes: BufferLike
  9. def ++ [B >: A, That] (that: TraversableOnce[B])(implicit bf: CanBuildFrom[Buffer[T2], B, That]) : That

    definition classes: TraversableLike
  10. def ++: (xs: Traversable[T2]) : Buffer[T2]

    attributes: final
    definition classes: BufferLike
      deprecated:
    1. use ++=: instead

  11. def ++= (src: Array[T2], start: Int, len: Int) : Unit

    definition classes: BufferLike
      deprecated:
    1. replace by: buf ++= src.view(start, end)

  12. def ++= (xs: TraversableOnce[T2]) : MappedManyToMany.this.type

    definition classes: Growable
  13. def ++=: (xs: TraversableOnce[T2]) : MappedManyToMany.this.type

    definition classes: BufferLike
  14. def +: (elem: T2) : Buffer[T2]

    attributes: final
    definition classes: BufferLike
      deprecated:
    1. use +=:' instead

  15. def +: [B >: A, That] (elem: B)(implicit bf: CanBuildFrom[Buffer[T2], B, That]) : That

    definition classes: SeqLike
  16. def += (elem: T2) : MappedManyToMany.this.type

    definition classes: MappedManyToMany → BufferLike → Growable
  17. def += (elem1: T2, elem2: T2, elems: T2*) : MappedManyToMany.this.type

    definition classes: Growable
  18. def +=: (elem: T2) : MappedManyToMany.this.type

    definition classes: MappedManyToMany → BufferLike
  19. def - (elem1: T2, elem2: T2, elems: T2*) : Buffer[T2]

    definition classes: BufferLike → Subtractable
  20. def - (elem: T2) : Buffer[T2]

    definition classes: BufferLike → Subtractable
  21. def -- (xs: TraversableOnce[T2]) : Buffer[T2]

    definition classes: BufferLike → Subtractable
  22. def --= (xs: TraversableOnce[T2]) : MappedManyToMany.this.type

    definition classes: Shrinkable
  23. def -= (x: T2) : MappedManyToMany.this.type

    definition classes: BufferLike → Shrinkable
  24. def -= (elem1: T2, elem2: T2, elems: T2*) : MappedManyToMany.this.type

    definition classes: Shrinkable
  25. def /: [B] (z: B)(op: (B, T2) ⇒ B) : B

    definition classes: TraversableOnce
  26. def :+ [B >: A, That] (elem: B)(implicit bf: CanBuildFrom[Buffer[T2], B, That]) : That

    definition classes: SeqLike
  27. def :\ [B] (z: B)(op: (T2, B) ⇒ B) : B

    definition classes: TraversableOnce
  28. def << (cmd: Message[T2]) : Unit

    definition classes: BufferLike → Scriptable
  29. def == (arg0: AnyRef) : Boolean

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: AnyRef
  30. def == (arg0: Any) : Boolean

    o == arg0 is the same as o.equals(arg0).

    o == arg0 is the same as o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: Any
  31. var _joins : List[O]

    attributes: protected
  32. def addString (b: StringBuilder) : StringBuilder

    definition classes: TraversableOnce
  33. def addString (b: StringBuilder, sep: String) : StringBuilder

    definition classes: TraversableOnce
  34. def addString (b: StringBuilder, start: String, sep: String, end: String) : StringBuilder

    definition classes: TraversableOnce
  35. def all : List[T2]

  36. def andThen [C] (k: (T2) ⇒ C) : PartialFunction[Int, C]

    definition classes: PartialFunction → Function1
  37. def append (elems: T2*) : Unit

    definition classes: BufferLike
  38. def appendAll (xs: TraversableOnce[T2]) : Unit

    definition classes: BufferLike
  39. def apply (n: Int) : T2

    definition classes: MappedManyToMany → BufferLike → SeqLike → Function1
  40. def asInstanceOf [T0] : T0

    This method is used to cast the receiver object to be of type T0.

    This method is used to cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expressionList(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    the receiver object.

    attributes: final
    definition classes: Any
  41. def canEqual (that: Any) : Boolean

    definition classes: IterableLike → Equals
  42. def childAt (n: Int) : T2

    attributes: protected
  43. def children : List[T2]

    attributes: protected
  44. def clear () : Unit

    definition classes: MappedManyToMany → BufferLike → Growable
  45. def clone () : Buffer[T2]

    This method creates and returns a copy of the receiver object.

    This method creates and returns a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    definition classes: Cloneable → AnyRef
  46. def collect [B, That] (pf: PartialFunction[T2, B])(implicit bf: CanBuildFrom[Buffer[T2], B, That]) : That

    definition classes: TraversableLike
  47. def companion : GenericCompanion[Buffer]

    definition classes: Buffer → Seq → Seq → Iterable → Iterable → Traversable → Traversable → GenericTraversableTemplate
  48. def compose [A] (g: (A) ⇒ Int) : (A) ⇒ T2

    definition classes: Function1
  49. def contains (elem: Any) : Boolean

    definition classes: SeqLike
  50. def containsSlice [B] (that: Seq[B]) : Boolean

    definition classes: SeqLike
  51. def copyToArray [B >: A] (xs: Array[B], start: Int, len: Int) : Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce
  52. def copyToArray [B >: A] (xs: Array[B]) : Unit

    definition classes: TraversableOnce
  53. def copyToArray [B >: A] (xs: Array[B], start: Int) : Unit

    definition classes: TraversableOnce
  54. def copyToBuffer [B >: A] (dest: Buffer[B]) : Unit

    definition classes: TraversableOnce
  55. def corresponds [B] (that: Seq[B])(p: (T2, B) ⇒ Boolean) : Boolean

    definition classes: SeqLike
  56. def count (p: (T2) ⇒ Boolean) : Int

    definition classes: TraversableOnce
  57. def delete_! : Boolean

  58. def diff [B >: A] (that: Seq[B]) : Buffer[T2]

    definition classes: SeqLike
  59. def distinct : Buffer[T2]

    definition classes: SeqLike
  60. def drop (n: Int) : Buffer[T2]

    definition classes: TraversableLike
  61. def dropRight (n: Int) : Buffer[T2]

    definition classes: IterableLike
  62. def dropWhile (p: (T2) ⇒ Boolean) : Buffer[T2]

    definition classes: TraversableLike
  63. def elements : Iterator[T2]

    definition classes: IterableLike
      deprecated:
    1. use iterator' instead

  64. def endsWith [B] (that: Seq[B]) : Boolean

    definition classes: SeqLike
  65. def eq (arg0: AnyRef) : Boolean

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation] on non-null instances of AnyRef: * It is reflexive: for any non-null instance x of type AnyRef, x.eq(x) returns true. * It is symmetric: for any non-null instances x and y of type AnyRef, x.eq(y) returns true if and only if y.eq(x) returns true. * It is transitive: for any non-null instances x, y, and z of type AnyRef if x.eq(y) returns true and y.eq(z) returns true, then x.eq(z) returns true.

    Additionally, the eq method has three other properties. * It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false. * For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false. * null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    arg0

    the object to compare against this object for reference equality.

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    attributes: final
    definition classes: AnyRef
  66. def equals (that: Any) : Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    The default implementations of this method is an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation]: * It is reflexive: for any instance x of type Any, x.equals(x) should return true. * It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true. * It is transitive: for any instances x, y, and z of type AnyRef if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

    If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is often necessary to override hashCode to ensure that objects that are "equal" (o1.equals(o2) returns true) hash to the same scala.Int (o1.hashCode.equals(o2.hashCode)).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    definition classes: SeqLike → Equals → AnyRef → Any
  67. def equalsWith [B] (that: Seq[B])(f: (T2, B) ⇒ Boolean) : Boolean

    definition classes: SeqLike
      deprecated:
    1. use corresponds instead

  68. def exists (p: (T2) ⇒ Boolean) : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  69. def field (join: O) : net.liftweb.mapper.MappedForeignKey[ManyToMany.this.K, O, _ <: net.liftweb.mapper.KeyedMapper[_, _]]

  70. def filter (p: (T2) ⇒ Boolean) : Buffer[T2]

    definition classes: TraversableLike
  71. def filterNot (p: (T2) ⇒ Boolean) : Buffer[T2]

    definition classes: TraversableLike
  72. def finalize () : Unit

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    The details of when and if the finalize method are invoked, as well as the interaction between finalizeand non-local returns and exceptions, are all platform dependent.

    attributes: protected
    definition classes: AnyRef
  73. def find (p: (T2) ⇒ Boolean) : Option[T2]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  74. def findIndexOf (p: (T2) ⇒ Boolean) : Int

    definition classes: SeqLike
  75. def findLastIndexOf (p: (T2) ⇒ Boolean) : Int

    definition classes: SeqLike
      deprecated:
    1. use lastIndexWhere instead

  76. def first : T2

    definition classes: IterableLike
      deprecated:
    1. use head' instead

  77. def firstOption : Option[T2]

    definition classes: IterableLike
      deprecated:
    1. use headOption' instead

  78. def flatMap [B, That] (f: (T2) ⇒ Traversable[B])(implicit bf: CanBuildFrom[Buffer[T2], B, That]) : That

    definition classes: TraversableLike → FilterMonadic
  79. def flatten [B] (implicit asTraversable: (T2) ⇒ Traversable[B]) : Buffer[B]

    definition classes: GenericTraversableTemplate
  80. def foldLeft [B] (z: B)(op: (B, T2) ⇒ B) : B

    definition classes: TraversableOnce
  81. def foldRight [B] (z: B)(op: (T2, B) ⇒ B) : B

    definition classes: IterableLike → TraversableOnce
  82. def forall (p: (T2) ⇒ Boolean) : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  83. def foreach [U] (f: (T2) ⇒ U) : Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce → FilterMonadic
  84. def genericBuilder [B] : Builder[B, Buffer[B]]

    definition classes: GenericTraversableTemplate
  85. def getClass () : java.lang.Class[_]

    Returns a representation that corresponds to the dynamic class of the receiver object.

    Returns a representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    attributes: final
    definition classes: AnyRef
  86. def groupBy [K] (f: (T2) ⇒ K) : Map[K, Buffer[T2]]

    definition classes: TraversableLike
  87. def grouped (size: Int) : Iterator[Buffer[T2]]

    definition classes: IterableLike
  88. def hasDefiniteSize : Boolean

    definition classes: TraversableLike → TraversableOnce
  89. def hashCode () : Int

    Returns a hash code value for the object.

    Returns a hash code value for the object.

    The default hashing algorithm is platform dependent.

    Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

    returns

    the hash code value for the object.

    definition classes: SeqLike → AnyRef → Any
  90. def head : T2

    definition classes: IterableLike → TraversableLike
  91. def headOption : Option[T2]

    definition classes: TraversableLike
  92. def indexOf (e: T2) : Int

  93. def indexOf [B >: A] (elem: B, from: Int) : Int

    definition classes: SeqLike
  94. def indexOf [B >: A] (elem: B) : Int

    definition classes: SeqLike
  95. def indexOfSlice [B >: A] (that: Seq[B], from: Int) : Int

    definition classes: SeqLike
  96. def indexOfSlice [B >: A] (that: Seq[B]) : Int

    definition classes: SeqLike
  97. def indexWhere (p: (T2) ⇒ Boolean, from: Int) : Int

    definition classes: SeqLike
  98. def indexWhere (p: (T2) ⇒ Boolean) : Int

    definition classes: SeqLike
  99. def indices : Range

    definition classes: SeqLike
  100. def init : Buffer[T2]

    definition classes: TraversableLike
  101. def insert (n: Int, elems: T2*) : Unit

    definition classes: BufferLike
  102. def insertAll (n: Int, traversable: Traversable[T2]) : Unit

    definition classes: MappedManyToMany → BufferLike
  103. def intersect [B >: A] (that: Seq[B]) : Buffer[T2]

    definition classes: SeqLike
  104. def isDefinedAt (idx: Int) : Boolean

    definition classes: SeqLike
  105. def isEmpty : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  106. def isInstanceOf [T0] : Boolean

    This method is used to test whether the dynamic type of the receiver object is T0.

    This method is used to test whether the dynamic type of the receiver object is T0.

    Note that the test result of the test is modulo Scala's erasure semantics. Therefore the expression1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    attributes: final
    definition classes: Any
  107. def isJoinForChild (e: T2)(join: O) : Boolean

    attributes: protected
  108. def isTraversableAgain : Boolean

    attributes: final
    definition classes: TraversableLike → TraversableOnce
  109. def iterator : Iterator[T2]

    definition classes: MappedManyToMany → IterableLike
  110. def joinForChild (e: T2) : Option[O]

    attributes: protected
  111. val joinMeta : MetaMapper[O]

    The singleton of the join table

    The singleton of the join table

  112. def joins : List[O]

  113. def last : T2

    definition classes: TraversableLike
  114. def lastIndexOf [B >: A] (elem: B, end: Int) : Int

    definition classes: SeqLike
  115. def lastIndexOf [B >: A] (elem: B) : Int

    definition classes: SeqLike
  116. def lastIndexOfSlice [B >: A] (that: Seq[B], end: Int) : Int

    definition classes: SeqLike
  117. def lastIndexOfSlice [B >: A] (that: Seq[B]) : Int

    definition classes: SeqLike
  118. def lastIndexWhere (p: (T2) ⇒ Boolean, end: Int) : Int

    definition classes: SeqLike
  119. def lastIndexWhere (p: (T2) ⇒ Boolean) : Int

    definition classes: SeqLike
  120. def lastOption : Option[T2]

    definition classes: TraversableLike
  121. def length : Int

    definition classes: MappedManyToMany → BufferLike → SeqLike
  122. def lengthCompare (len: Int) : Int

    definition classes: SeqLike
  123. def lift : (Int) ⇒ Option[T2]

    definition classes: PartialFunction
  124. def map [B, That] (f: (T2) ⇒ B)(implicit bf: CanBuildFrom[Buffer[T2], B, That]) : That

    definition classes: TraversableLike → FilterMonadic
  125. def max [B >: A] (implicit cmp: Ordering[B]) : T2

    definition classes: TraversableOnce
  126. def min [B >: A] (implicit cmp: Ordering[B]) : T2

    definition classes: TraversableOnce
  127. def mkString : String

    definition classes: TraversableOnce
  128. def mkString (sep: String) : String

    definition classes: TraversableOnce
  129. def mkString (start: String, sep: String, end: String) : String

    definition classes: TraversableOnce
  130. def ne (arg0: AnyRef) : Boolean

    o.ne(arg0) is the same as !(o.eq(arg0)).

    o.ne(arg0) is the same as !(o.eq(arg0)).

    arg0

    the object to compare against this object for reference dis-equality.

    returns

    false if the argument is not a reference to the receiver object; true otherwise.

    attributes: final
    definition classes: AnyRef
  131. def newBuilder : Builder[T2, Buffer[T2]]

    attributes: protected[this]
    definition classes: GenericTraversableTemplate → HasNewBuilder
  132. def nonEmpty : Boolean

    definition classes: TraversableOnce
  133. def notify () : Unit

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  134. def notifyAll () : Unit

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  135. def orElse [A1 <: A, B1 >: B] (that: PartialFunction[A1, B1]) : PartialFunction[A1, B1]

    definition classes: PartialFunction
  136. val otherField : MappedForeignKey[K2, O, T2]

    The foreign key in the join table that refers to the other mapper's primaryKey

    The foreign key in the join table that refers to the other mapper's primaryKey

  137. val otherMeta : MetaMapper[T2]

    The singleton of the other mapper

    The singleton of the other mapper

  138. def own (e: T2) : O

    attributes: protected
  139. def padTo [B >: A, That] (len: Int, elem: B)(implicit bf: CanBuildFrom[Buffer[T2], B, That]) : That

    definition classes: SeqLike
  140. def partition (p: (T2) ⇒ Boolean) : (Buffer[T2], Buffer[T2])

    definition classes: TraversableLike
  141. def patch [B >: A, That] (from: Int, patch: Seq[B], replaced: Int)(implicit bf: CanBuildFrom[Buffer[T2], B, That]) : That

    definition classes: SeqLike
  142. def prefixLength (p: (T2) ⇒ Boolean) : Int

    definition classes: SeqLike
  143. def prepend (elems: T2*) : Unit

    definition classes: BufferLike
  144. def prependAll (xs: TraversableOnce[T2]) : Unit

    definition classes: BufferLike
  145. def product [B >: A] (implicit num: Numeric[B]) : B

    definition classes: TraversableOnce
  146. def projection : SeqView[T2, Buffer[T2]]

    definition classes: SeqLike → IterableLike
      deprecated:
    1. use view' instead

  147. val qp : QueryParam[O]*

    Any QueryParams to limit entries in the join table (other than matching thisField to primaryKey) To limit children based on fields in the other table (not the join table), it is currently necessary to point the join mapper to a view which pulls the join table's fields as well as fields of the other table.

    Any QueryParams to limit entries in the join table (other than matching thisField to primaryKey) To limit children based on fields in the other table (not the join table), it is currently necessary to point the join mapper to a view which pulls the join table's fields as well as fields of the other table.

  148. def readOnly : Seq[T2]

    definition classes: BufferLike
  149. def reduceLeft [B >: A] (op: (B, T2) ⇒ B) : B

    definition classes: TraversableOnce
  150. def reduceLeftOption [B >: A] (op: (B, T2) ⇒ B) : Option[B]

    definition classes: TraversableOnce
  151. def reduceRight [B >: A] (op: (T2, B) ⇒ B) : B

    definition classes: IterableLike → TraversableOnce
  152. def reduceRightOption [B >: A] (op: (T2, B) ⇒ B) : Option[B]

    definition classes: TraversableOnce
  153. def refresh : List[T2]

  154. def remove (n: Int) : T2

    definition classes: MappedManyToMany → BufferLike
  155. def remove (n: Int, count: Int) : Unit

    definition classes: BufferLike
  156. var removedJoins : List[O]

    attributes: protected
  157. def repr : Buffer[T2]

    definition classes: TraversableLike
  158. def reverse : Buffer[T2]

    definition classes: SeqLike
  159. def reverseIterator : Iterator[T2]

    definition classes: SeqLike
  160. def reverseMap [B, That] (f: (T2) ⇒ B)(implicit bf: CanBuildFrom[Buffer[T2], B, That]) : That

    definition classes: SeqLike
  161. def reversed : List[T2]

    attributes: protected[this]
    definition classes: TraversableOnce
  162. def reversedElements : Iterator[T2]

    definition classes: SeqLike
      deprecated:
    1. use reverseIterator' instead

  163. def sameElements [B >: A] (that: Iterable[B]) : Boolean

    definition classes: IterableLike
  164. def save : Boolean

  165. def scanLeft [B, That] (z: B)(op: (B, T2) ⇒ B)(implicit bf: CanBuildFrom[Buffer[T2], B, That]) : That

    definition classes: TraversableLike
  166. def scanRight [B, That] (z: B)(op: (T2, B) ⇒ B)(implicit bf: CanBuildFrom[Buffer[T2], B, That]) : That

    definition classes: TraversableLike
  167. def segmentLength (p: (T2) ⇒ Boolean, from: Int) : Int

    definition classes: SeqLike
  168. def size : Int

    definition classes: SeqLike → TraversableOnce
  169. def slice (from: Int, until: Int) : Buffer[T2]

    definition classes: IterableLike → TraversableLike
  170. def sliding [B >: A] (size: Int, step: Int) : Iterator[Buffer[T2]]

    definition classes: IterableLike
  171. def sliding [B >: A] (size: Int) : Iterator[Buffer[T2]]

    definition classes: IterableLike
  172. def sortBy [B] (f: (T2) ⇒ B)(implicit ord: Ordering[B]) : Buffer[T2]

    definition classes: SeqLike
  173. def sortWith (lt: (T2, T2) ⇒ Boolean) : Buffer[T2]

    definition classes: SeqLike
  174. def sorted [B >: A] (implicit ord: Ordering[B]) : Buffer[T2]

    definition classes: SeqLike
  175. def span (p: (T2) ⇒ Boolean) : (Buffer[T2], Buffer[T2])

    definition classes: TraversableLike
  176. def splitAt (n: Int) : (Buffer[T2], Buffer[T2])

    definition classes: TraversableLike
  177. def startsWith [B] (that: Seq[B]) : Boolean

    definition classes: SeqLike
  178. def startsWith [B] (that: Seq[B], offset: Int) : Boolean

    definition classes: SeqLike
  179. def stringPrefix : String

    definition classes: BufferLike → TraversableLike
  180. def sum [B >: A] (implicit num: Numeric[B]) : B

    definition classes: TraversableOnce
  181. def synchronized [T0] (arg0: T0) : T0

    attributes: final
    definition classes: AnyRef
  182. def tail : Buffer[T2]

    definition classes: TraversableLike
  183. def take (n: Int) : Buffer[T2]

    definition classes: IterableLike → TraversableLike
  184. def takeRight (n: Int) : Buffer[T2]

    definition classes: IterableLike
  185. def takeWhile (p: (T2) ⇒ Boolean) : Buffer[T2]

    definition classes: IterableLike → TraversableLike
  186. def thisCollection : Seq[T2]

    attributes: protected[this]
    definition classes: SeqLike → IterableLike → TraversableLike
  187. def toArray [B >: A] (implicit arg0: ClassManifest[B]) : Array[B]

    definition classes: TraversableOnce
  188. def toBuffer [B >: A] : Buffer[B]

    definition classes: TraversableOnce
  189. def toCollection (repr: Buffer[T2]) : Seq[T2]

    attributes: protected[this]
    definition classes: SeqLike → IterableLike → TraversableLike
  190. def toIndexedSeq [B >: A] : IndexedSeq[B]

    definition classes: TraversableOnce
  191. def toIterable : Iterable[T2]

    definition classes: IterableLike → TraversableOnce
  192. def toIterator : Iterator[T2]

    definition classes: TraversableLike → TraversableOnce
  193. def toList : List[T2]

    definition classes: TraversableOnce
  194. def toMap [T, U] (implicit ev: <:<[T2, (T, U)]) : Map[T, U]

    definition classes: TraversableOnce
  195. def toSeq : Seq[T2]

    definition classes: SeqLike → IterableLike → TraversableOnce
  196. def toSet [B >: A] : Set[B]

    definition classes: TraversableOnce
  197. def toStream : Stream[T2]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  198. def toString () : String

    Returns a string representation of the object.

    Returns a string representation of the object.

    The default representation is platform dependent.

    returns

    a string representation of the object.

    definition classes: SeqLike → TraversableLike → AnyRef → Any
  199. def toTraversable : Traversable[T2]

    definition classes: TraversableLike → TraversableOnce
  200. def transpose [B] (implicit asTraversable: (T2) ⇒ Traversable[B]) : Buffer[Buffer[B]]

    definition classes: GenericTraversableTemplate
  201. def trimEnd (n: Int) : Unit

    definition classes: BufferLike
  202. def trimStart (n: Int) : Unit

    definition classes: BufferLike
  203. def union [B >: A, That] (that: Seq[B])(implicit bf: CanBuildFrom[Buffer[T2], B, That]) : That

    definition classes: SeqLike
  204. def unown (e: T2) : Option[O]

    attributes: protected
  205. def unzip [A1, A2] (implicit asPair: (T2) ⇒ (A1, A2)) : (Buffer[A1], Buffer[A2])

    definition classes: GenericTraversableTemplate
  206. def update (n: Int, newelem: T2) : Unit

    definition classes: MappedManyToMany → BufferLike → Seq
  207. def updated [B >: A, That] (index: Int, elem: B)(implicit bf: CanBuildFrom[Buffer[T2], B, That]) : That

    definition classes: SeqLike
  208. def view (from: Int, until: Int) : SeqView[T2, Buffer[T2]]

    definition classes: SeqLike → IterableLike → TraversableLike
  209. def view : SeqView[T2, Buffer[T2]]

    definition classes: SeqLike → IterableLike → TraversableLike
  210. def wait () : Unit

    attributes: final
    definition classes: AnyRef
  211. def wait (arg0: Long, arg1: Int) : Unit

    attributes: final
    definition classes: AnyRef
  212. def wait (arg0: Long) : Unit

    attributes: final
    definition classes: AnyRef
  213. def withFilter (p: (T2) ⇒ Boolean) : FilterMonadic[T2, Buffer[T2]]

    definition classes: TraversableLike → FilterMonadic
  214. def zip [A1 >: A, B, That] (that: Iterable[B])(implicit bf: CanBuildFrom[Buffer[T2], (A1, B), That]) : That

    definition classes: IterableLike
  215. def zipAll [B, A1 >: A, That] (that: Iterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Buffer[T2], (A1, B), That]) : That

    definition classes: IterableLike
  216. def zipWithIndex [A1 >: A, That] (implicit bf: CanBuildFrom[Buffer[T2], (A1, Int), That]) : That

    definition classes: IterableLike

Inherited from Buffer[T2]

Inherited from BufferLike[T2, Buffer[T2]]

Inherited from Cloneable[Buffer[T2]]

Inherited from Subtractable[T2, Buffer[T2]]

Inherited from Scriptable[T2]

Inherited from Shrinkable[T2]

Inherited from Growable[T2]

Inherited from Seq[T2]

Inherited from Seq[T2]

Inherited from SeqLike[T2, Buffer[T2]]

Inherited from PartialFunction[Int, T2]

Inherited from (Int) ⇒ T2

Inherited from Iterable[T2]

Inherited from Iterable[T2]

Inherited from IterableLike[T2, Buffer[T2]]

Inherited from Equals

Inherited from Traversable[T2]

Inherited from Mutable

Inherited from Traversable[T2]

Inherited from GenericTraversableTemplate[T2, Buffer]

Inherited from TraversableLike[T2, Buffer[T2]]

Inherited from TraversableOnce[T2]

Inherited from FilterMonadic[T2, Buffer[T2]]

Inherited from HasNewBuilder[T2, Buffer[T2]]

Inherited from AnyRef

Inherited from Any