com.mongodb.casbah.gridfs

JodaGridFS

class JodaGridFS extends GenericGridFS with Iterable[JodaGridFSDBFile]

Source
JodaGridFS.scala
Linear Supertypes
Iterable[JodaGridFSDBFile], IterableLike[JodaGridFSDBFile, Iterable[JodaGridFSDBFile]], Equals, GenIterable[JodaGridFSDBFile], GenIterableLike[JodaGridFSDBFile, Iterable[JodaGridFSDBFile]], Traversable[JodaGridFSDBFile], GenTraversable[JodaGridFSDBFile], GenericTraversableTemplate[JodaGridFSDBFile, Iterable], TraversableLike[JodaGridFSDBFile, Iterable[JodaGridFSDBFile]], GenTraversableLike[JodaGridFSDBFile, Iterable[JodaGridFSDBFile]], Parallelizable[JodaGridFSDBFile, ParIterable[JodaGridFSDBFile]], TraversableOnce[JodaGridFSDBFile], GenTraversableOnce[JodaGridFSDBFile], FilterMonadic[JodaGridFSDBFile, Iterable[JodaGridFSDBFile]], HasNewBuilder[JodaGridFSDBFile, Iterable[com.mongodb.casbah.gridfs.JodaGridFSDBFile] @scala.annotation.unchecked.uncheckedVariance], GenericGridFS, Logging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JodaGridFS
  2. Iterable
  3. IterableLike
  4. Equals
  5. GenIterable
  6. GenIterableLike
  7. Traversable
  8. GenTraversable
  9. GenericTraversableTemplate
  10. TraversableLike
  11. GenTraversableLike
  12. Parallelizable
  13. TraversableOnce
  14. GenTraversableOnce
  15. FilterMonadic
  16. HasNewBuilder
  17. GenericGridFS
  18. Logging
  19. AnyRef
  20. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JodaGridFS(underlying: gridfs.GridFS)

    Attributes
    protected[com.mongodb.casbah.gridfs]

Type Members

  1. type FileWriteOp = (JodaGridFSInputFile) ⇒ Unit

  2. type Self = Iterable[JodaGridFSDBFile]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  3. class WithFilter extends FilterMonadic[A, Repr]

    Definition Classes
    TraversableLike

Value Members

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

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

    Definition Classes
    AnyRef → Any
  3. def ++[B >: JodaGridFSDBFile, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[JodaGridFSDBFile], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  4. def ++:[B >: JodaGridFSDBFile, That](that: Traversable[B])(implicit bf: CanBuildFrom[Iterable[JodaGridFSDBFile], B, That]): That

    Definition Classes
    TraversableLike
  5. def ++:[B >: JodaGridFSDBFile, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[JodaGridFSDBFile], B, That]): That

    Definition Classes
    TraversableLike
  6. def /:[B](z: B)(op: (B, JodaGridFSDBFile) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  7. def :\[B](z: B)(op: (JodaGridFSDBFile, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  8. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  9. def addString(b: StringBuilder): StringBuilder

    Definition Classes
    TraversableOnce
  10. def addString(b: StringBuilder, sep: String): StringBuilder

    Definition Classes
    TraversableOnce
  11. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Definition Classes
    TraversableOnce
  12. def aggregate[B](z: ⇒ B)(seqop: (B, JodaGridFSDBFile) ⇒ B, combop: (B, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  13. def apply(in: InputStream, filename: String)(op: FileWriteOp): Option[AnyRef]

    Create a new GridFS File from a java.io.InputStream and a specific filename

    Create a new GridFS File from a java.io.InputStream and a specific filename

    Uses a loan pattern, so you need to pass a curried function which expects a GridFSInputFile as a parameter. It AUTOMATICALLY saves the GridFS file at it's end, so throw an exception if you want to fail. If you don't want automatic saving/loaning please see the createFile method instead.

    returns

    The ID of the created File (Option[AnyRef])

    See also

    createFile

  14. def apply(in: InputStream)(op: FileWriteOp): Option[AnyRef]

    Create a new GridFS File from a java.io.InputStream

    Create a new GridFS File from a java.io.InputStream

    Uses a loan pattern, so you need to pass a curried function which expects a GridFSInputFile as a parameter. It AUTOMATICALLY saves the GridFS file at it's end, so throw an exception if you want to fail. If you don't want automatic saving/loaning please see the createFile method instead.

    returns

    The ID of the created File (Option[AnyRef])

    See also

    createFile

  15. def apply(f: File)(op: FileWriteOp): Option[AnyRef]

    Create a new GridFS File from a java.io.File

    Create a new GridFS File from a java.io.File

    Uses a loan pattern, so you need to pass a curried function which expects a GridFSInputFile as a parameter. It AUTOMATICALLY saves the GridFS file at it's end, so throw an exception if you want to fail. If you don't want automatic saving/loaning please see the createFile method instead.

    returns

    The ID of the created File (Option[AnyRef])

    See also

    createFile

  16. def apply(data: Array[Byte])(op: FileWriteOp): Option[AnyRef]

    Create a new GridFS File from a Byte Array

    Create a new GridFS File from a Byte Array

    Uses a loan pattern, so you need to pass a curried function which expects a GridFSInputFile as a parameter. It AUTOMATICALLY saves the GridFS file at it's end, so throw an exception if you want to fail. If you don't want automatic saving/loaning please see the createFile method instead.

    returns

    The ID of the created File (Option[AnyRef])

    See also

    createFile

  17. def apply(data: Source)(op: FileWriteOp): Nothing

    Create a new GridFS File from a scala.io.Source

    Create a new GridFS File from a scala.io.Source

    Uses a loan pattern, so you need to pass a curried function which expects a GridFSInputFile as a parameter. It AUTOMATICALLY saves the GridFS file at it's end, so throw an exception if you want to fail. If you don't want automatic saving/loaning please see the createFile method instead.

    returns

    The ID of the created File (Option[AnyRef])

    See also

    createFile

  18. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  19. def bucketName: String

    Definition Classes
    GenericGridFS
  20. def canEqual(that: Any): Boolean

    Definition Classes
    IterableLike → Equals
  21. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. def collect[B, That](pf: PartialFunction[JodaGridFSDBFile, B])(implicit bf: CanBuildFrom[Iterable[JodaGridFSDBFile], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  23. def collectFirst[B](pf: PartialFunction[JodaGridFSDBFile, B]): Option[B]

    Definition Classes
    TraversableOnce
  24. def companion: GenericCompanion[Iterable]

    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  25. def copyToArray[B >: JodaGridFSDBFile](xs: Array[B], start: Int, len: Int): Unit

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  26. def copyToArray[B >: JodaGridFSDBFile](xs: Array[B]): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  27. def copyToArray[B >: JodaGridFSDBFile](xs: Array[B], start: Int): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  28. def copyToBuffer[B >: JodaGridFSDBFile](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  29. def count(p: (JodaGridFSDBFile) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  30. def createFile(in: InputStream, filename: String): JodaGridFSInputFile

  31. def createFile(in: InputStream): JodaGridFSInputFile

  32. def createFile(f: File): JodaGridFSInputFile

  33. def createFile(data: Array[Byte]): JodaGridFSInputFile

  34. def createFile(data: Source): JodaGridFSInputFile

    createFile

    createFile

    Creates a new file in GridFS

    TODO - Should the curried versions give the option to not automatically save?

  35. implicit val db: Imports.MongoDB

    Definition Classes
    GenericGridFS
  36. def drop(n: Int): Iterable[JodaGridFSDBFile]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  37. def dropRight(n: Int): Iterable[JodaGridFSDBFile]

    Definition Classes
    IterableLike
  38. def dropWhile(p: (JodaGridFSDBFile) ⇒ Boolean): Iterable[JodaGridFSDBFile]

    Definition Classes
    TraversableLike → GenTraversableLike
  39. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  41. def exists(p: (JodaGridFSDBFile) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  42. def files[A](query: A)(implicit arg0: (A) ⇒ Imports.DBObject): Imports.MongoCursor

    Definition Classes
    GenericGridFS
  43. def files: Imports.MongoCursor

    Returns a cursor for this filestore of all of the files...

    Returns a cursor for this filestore of all of the files...

    Definition Classes
    GenericGridFS
  44. implicit val filesCollection: MongoGenericTypedCollection[GridFSDBFileSafeJoda]

    Definition Classes
    GenericGridFS
  45. def filter(p: (JodaGridFSDBFile) ⇒ Boolean): Iterable[JodaGridFSDBFile]

    Definition Classes
    TraversableLike → GenTraversableLike
  46. def filterNot(p: (JodaGridFSDBFile) ⇒ Boolean): Iterable[JodaGridFSDBFile]

    Definition Classes
    TraversableLike → GenTraversableLike
  47. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  48. def find(p: (JodaGridFSDBFile) ⇒ Boolean): Option[JodaGridFSDBFile]

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  49. def find(filename: String): Buffer[gridfs.GridFSDBFile]

    Find by query

    Find by query

    Definition Classes
    GenericGridFS
  50. def find(id: Imports.ObjectId): gridfs.GridFSDBFile

    Find by query - returns a single item

    Find by query - returns a single item

    Definition Classes
    GenericGridFS
  51. def find[A](query: A)(implicit arg0: (A) ⇒ Imports.DBObject): Buffer[gridfs.GridFSDBFile]

    Find by query

    Find by query

    Definition Classes
    GenericGridFS
  52. def findOne(filename: String): Option[JodaGridFSDBFile]

  53. def findOne(id: Imports.ObjectId): Option[JodaGridFSDBFile]

  54. def findOne[A](query: A)(implicit arg0: (A) ⇒ Imports.DBObject): Option[JodaGridFSDBFile]

  55. def flatMap[B, That](f: (JodaGridFSDBFile) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[JodaGridFSDBFile], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  56. def flatten[B](implicit asTraversable: (JodaGridFSDBFile) ⇒ GenTraversableOnce[B]): Iterable[B]

    Definition Classes
    GenericTraversableTemplate
  57. def fold[A1 >: JodaGridFSDBFile](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  58. def foldLeft[B](z: B)(op: (B, JodaGridFSDBFile) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  59. def foldRight[B](z: B)(op: (JodaGridFSDBFile, B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  60. def forall(p: (JodaGridFSDBFile) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  61. def foreach[U](f: (JodaGridFSDBFile) ⇒ U): Unit

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  62. def genericBuilder[B]: Builder[B, Iterable[B]]

    Definition Classes
    GenericTraversableTemplate
  63. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  64. def groupBy[K](f: (JodaGridFSDBFile) ⇒ K): Map[K, Iterable[JodaGridFSDBFile]]

    Definition Classes
    TraversableLike → GenTraversableLike
  65. def grouped(size: Int): Iterator[Iterable[JodaGridFSDBFile]]

    Definition Classes
    IterableLike
  66. def hasDefiniteSize: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  67. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  68. def head: JodaGridFSDBFile

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  69. def headOption: Option[JodaGridFSDBFile]

    Definition Classes
    TraversableLike → GenTraversableLike
  70. def init: Iterable[JodaGridFSDBFile]

    Definition Classes
    TraversableLike → GenTraversableLike
  71. def inits: Iterator[Iterable[JodaGridFSDBFile]]

    Definition Classes
    TraversableLike
  72. def isEmpty: Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  73. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  74. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  75. def iterator: Iterator[JodaGridFSDBFile]

    Definition Classes
    JodaGridFS → IterableLike → GenIterableLike
  76. def last: JodaGridFSDBFile

    Definition Classes
    TraversableLike → GenTraversableLike
  77. def lastOption: Option[JodaGridFSDBFile]

    Definition Classes
    TraversableLike → GenTraversableLike
  78. def loan[T <: GenericGridFSFile](file: T)(op: (T) ⇒ Option[AnyRef]): Option[AnyRef]

    loan

    loan

    Basic implementation of the Loan pattern - the idea is to pass a Unit returning function and a Mongo file handle, and work on it within a code block.

    Attributes
    protected[com.mongodb.casbah.gridfs]
    Definition Classes
    GenericGridFS
  79. var log: Logger

    Attributes
    protected[com.mongodb.casbah]
    Definition Classes
    Logging
  80. def map[B, That](f: (JodaGridFSDBFile) ⇒ B)(implicit bf: CanBuildFrom[Iterable[JodaGridFSDBFile], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  81. def max[B >: JodaGridFSDBFile](implicit cmp: Ordering[B]): JodaGridFSDBFile

    Definition Classes
    TraversableOnce → GenTraversableOnce
  82. def maxBy[B](f: (JodaGridFSDBFile) ⇒ B)(implicit cmp: Ordering[B]): JodaGridFSDBFile

    Definition Classes
    TraversableOnce → GenTraversableOnce
  83. def min[B >: JodaGridFSDBFile](implicit cmp: Ordering[B]): JodaGridFSDBFile

    Definition Classes
    TraversableOnce → GenTraversableOnce
  84. def minBy[B](f: (JodaGridFSDBFile) ⇒ B)(implicit cmp: Ordering[B]): JodaGridFSDBFile

    Definition Classes
    TraversableOnce → GenTraversableOnce
  85. def mkString: String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def mkString(sep: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  87. def mkString(start: String, sep: String, end: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  88. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  89. def newBuilder: Builder[JodaGridFSDBFile, Iterable[JodaGridFSDBFile]]

    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  90. def nonEmpty: Boolean

    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. final def notify(): Unit

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

    Definition Classes
    AnyRef
  93. def par: ParIterable[JodaGridFSDBFile]

    Definition Classes
    Parallelizable
  94. def parCombiner: Combiner[JodaGridFSDBFile, ParIterable[JodaGridFSDBFile]]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  95. def partition(p: (JodaGridFSDBFile) ⇒ Boolean): (Iterable[JodaGridFSDBFile], Iterable[JodaGridFSDBFile])

    Definition Classes
    TraversableLike → GenTraversableLike
  96. def product[B >: JodaGridFSDBFile](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def reduce[A1 >: JodaGridFSDBFile](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def reduceLeft[B >: JodaGridFSDBFile](op: (B, JodaGridFSDBFile) ⇒ B): B

    Definition Classes
    TraversableOnce
  99. def reduceLeftOption[B >: JodaGridFSDBFile](op: (B, JodaGridFSDBFile) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def reduceOption[A1 >: JodaGridFSDBFile](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def reduceRight[B >: JodaGridFSDBFile](op: (JodaGridFSDBFile, B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  102. def reduceRightOption[B >: JodaGridFSDBFile](op: (JodaGridFSDBFile, B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. def remove(filename: String): Unit

    Definition Classes
    GenericGridFS
  104. def remove(id: Imports.ObjectId): Unit

    Definition Classes
    GenericGridFS
  105. def remove[A](query: A)(implicit arg0: (A) ⇒ Imports.DBObject): Unit

    Definition Classes
    GenericGridFS
  106. def repr: Iterable[JodaGridFSDBFile]

    Definition Classes
    TraversableLike → GenTraversableLike
  107. def reversed: List[JodaGridFSDBFile]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  108. def sameElements[B >: JodaGridFSDBFile](that: GenIterable[B]): Boolean

    Definition Classes
    IterableLike → GenIterableLike
  109. def scan[B >: JodaGridFSDBFile, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Iterable[JodaGridFSDBFile], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  110. def scanLeft[B, That](z: B)(op: (B, JodaGridFSDBFile) ⇒ B)(implicit bf: CanBuildFrom[Iterable[JodaGridFSDBFile], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  111. def scanRight[B, That](z: B)(op: (JodaGridFSDBFile, B) ⇒ B)(implicit bf: CanBuildFrom[Iterable[JodaGridFSDBFile], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  112. def seq: Iterable[JodaGridFSDBFile]

    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  113. def size: Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  114. def slice(from: Int, until: Int): Iterable[JodaGridFSDBFile]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  115. def sliding(size: Int, step: Int): Iterator[Iterable[JodaGridFSDBFile]]

    Definition Classes
    IterableLike
  116. def sliding(size: Int): Iterator[Iterable[JodaGridFSDBFile]]

    Definition Classes
    IterableLike
  117. def span(p: (JodaGridFSDBFile) ⇒ Boolean): (Iterable[JodaGridFSDBFile], Iterable[JodaGridFSDBFile])

    Definition Classes
    TraversableLike → GenTraversableLike
  118. def splitAt(n: Int): (Iterable[JodaGridFSDBFile], Iterable[JodaGridFSDBFile])

    Definition Classes
    TraversableLike → GenTraversableLike
  119. def stringPrefix: String

    Definition Classes
    TraversableLike → GenTraversableLike
  120. def sum[B >: JodaGridFSDBFile](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  122. def tail: Iterable[JodaGridFSDBFile]

    Definition Classes
    TraversableLike → GenTraversableLike
  123. def tails: Iterator[Iterable[JodaGridFSDBFile]]

    Definition Classes
    TraversableLike
  124. def take(n: Int): Iterable[JodaGridFSDBFile]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  125. def takeRight(n: Int): Iterable[JodaGridFSDBFile]

    Definition Classes
    IterableLike
  126. def takeWhile(p: (JodaGridFSDBFile) ⇒ Boolean): Iterable[JodaGridFSDBFile]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  127. def thisCollection: Iterable[JodaGridFSDBFile]

    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  128. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, JodaGridFSDBFile, Col[JodaGridFSDBFile]]): Col[JodaGridFSDBFile]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  129. def toArray[B >: JodaGridFSDBFile](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def toBuffer[B >: JodaGridFSDBFile]: Buffer[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  131. def toCollection(repr: Iterable[JodaGridFSDBFile]): Iterable[JodaGridFSDBFile]

    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  132. def toIndexedSeq: IndexedSeq[JodaGridFSDBFile]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def toIterable: Iterable[JodaGridFSDBFile]

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  134. def toIterator: Iterator[JodaGridFSDBFile]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  135. def toList: List[JodaGridFSDBFile]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  136. def toMap[T, U](implicit ev: <:<[JodaGridFSDBFile, (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  137. def toSeq: Seq[JodaGridFSDBFile]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  138. def toSet[B >: JodaGridFSDBFile]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  139. def toStream: Stream[JodaGridFSDBFile]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  140. def toString(): String

    Definition Classes
    TraversableLike → Any
  141. def toTraversable: Traversable[JodaGridFSDBFile]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  142. def toVector: Vector[JodaGridFSDBFile]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  143. def transpose[B](implicit asTraversable: (JodaGridFSDBFile) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]

    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  144. val underlying: gridfs.GridFS

    Definition Classes
    JodaGridFSGenericGridFS
  145. def unzip[A1, A2](implicit asPair: (JodaGridFSDBFile) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])

    Definition Classes
    GenericTraversableTemplate
  146. def unzip3[A1, A2, A3](implicit asTriple: (JodaGridFSDBFile) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])

    Definition Classes
    GenericTraversableTemplate
  147. def view(from: Int, until: Int): IterableView[JodaGridFSDBFile, Iterable[JodaGridFSDBFile]]

    Definition Classes
    IterableLike → TraversableLike
  148. def view: IterableView[JodaGridFSDBFile, Iterable[JodaGridFSDBFile]]

    Definition Classes
    IterableLike → TraversableLike
  149. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  152. def withFilter(p: (JodaGridFSDBFile) ⇒ Boolean): FilterMonadic[JodaGridFSDBFile, Iterable[JodaGridFSDBFile]]

    Definition Classes
    TraversableLike → FilterMonadic
  153. def withNewFile(in: InputStream, filename: String)(op: FileWriteOp): Option[AnyRef]

    Loan pattern style file creation.

    Loan pattern style file creation.

    returns

    The ID of the created File (Option[AnyRef])

  154. def withNewFile(in: InputStream)(op: FileWriteOp): Option[AnyRef]

    Loan pattern style file creation.

    Loan pattern style file creation.

    returns

    The ID of the created File (Option[AnyRef])

  155. def withNewFile(f: File)(op: FileWriteOp): Option[AnyRef]

    Loan pattern style file creation.

    Loan pattern style file creation.

    returns

    The ID of the created File (Option[AnyRef])

  156. def withNewFile(data: Array[Byte])(op: FileWriteOp): Option[AnyRef]

    Loan pattern style file creation.

    Loan pattern style file creation.

    returns

    The ID of the created File (Option[AnyRef])

  157. def withNewFile(data: Source)(op: FileWriteOp): Nothing

  158. def zip[A1 >: JodaGridFSDBFile, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Iterable[JodaGridFSDBFile], (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  159. def zipAll[B, A1 >: JodaGridFSDBFile, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Iterable[JodaGridFSDBFile], (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  160. def zipWithIndex[A1 >: JodaGridFSDBFile, That](implicit bf: CanBuildFrom[Iterable[JodaGridFSDBFile], (A1, Int), That]): That

    Definition Classes
    IterableLike → GenIterableLike

Inherited from Iterable[JodaGridFSDBFile]

Inherited from IterableLike[JodaGridFSDBFile, Iterable[JodaGridFSDBFile]]

Inherited from Equals

Inherited from GenIterable[JodaGridFSDBFile]

Inherited from GenIterableLike[JodaGridFSDBFile, Iterable[JodaGridFSDBFile]]

Inherited from Traversable[JodaGridFSDBFile]

Inherited from GenTraversable[JodaGridFSDBFile]

Inherited from GenericTraversableTemplate[JodaGridFSDBFile, Iterable]

Inherited from TraversableLike[JodaGridFSDBFile, Iterable[JodaGridFSDBFile]]

Inherited from GenTraversableLike[JodaGridFSDBFile, Iterable[JodaGridFSDBFile]]

Inherited from Parallelizable[JodaGridFSDBFile, ParIterable[JodaGridFSDBFile]]

Inherited from TraversableOnce[JodaGridFSDBFile]

Inherited from GenTraversableOnce[JodaGridFSDBFile]

Inherited from FilterMonadic[JodaGridFSDBFile, Iterable[JodaGridFSDBFile]]

Inherited from HasNewBuilder[JodaGridFSDBFile, Iterable[com.mongodb.casbah.gridfs.JodaGridFSDBFile] @scala.annotation.unchecked.uncheckedVariance]

Inherited from GenericGridFS

Inherited from Logging

Inherited from AnyRef

Inherited from Any

Ungrouped