play.modules.reactivemongo.json.collection

JSONCollection

class JSONCollection extends GenericCollection[JSONSerializationPack.type] with CollectionMetaCommands with Product with Serializable

A Collection that interacts with the Play JSON library, using Reads and Writes.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JSONCollection
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. GenericCollection
  7. ImplicitCommandHelpers
  8. CollectionMetaCommands
  9. GenericCollectionWithCommands
  10. Collection
  11. AnyRef
  12. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JSONCollection(db: DB, name: String, failoverStrategy: FailoverStrategy, readPreference: ReadPreference)

  2. new JSONCollection(db: DB, name: String, failoverStrategy: FailoverStrategy)

    Annotations
    @deprecated
    Deprecated

    (Since version 0.12-RC5) Use the constructor with ReadPreference

Type Members

  1. type AggregationFramework = AggregationFramework.type

    Definition Classes
    GenericCollection
  2. final class Aggregator[T, AC[_] <: Cursor[_]] extends AnyRef

    Definition Classes
    GenericCollection
  3. final class AggregatorContext[T] extends AnyRef

    Definition Classes
    GenericCollection
  4. sealed trait BulkMaker[R, S <: BulkMaker[R, S]] extends AnyRef

    Attributes
    protected
    Definition Classes
    GenericCollection
  5. trait ImplicitlyDocumentProducer extends AnyRef

    Definition Classes
    ImplicitCommandHelpers
  6. class Mongo26WriteCommand extends BulkMaker[WriteResult, Mongo26WriteCommand]

    Attributes
    protected
    Definition Classes
    GenericCollection
  7. type PipelineOperator = commands.JSONAggregationFramework.PipelineOperator

    Definition Classes
    GenericCollection

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. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from JSONCollection to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (JSONCollection, B)

    Implicit information
    This member is added by an implicit conversion from JSONCollection to ArrowAssoc[JSONCollection] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  8. val BatchCommands: JSONBatchCommands.type

    Definition Classes
    JSONCollection → GenericCollection
  9. implicit def PackIdentityReader: Reader[Document]

    Definition Classes
    GenericCollection
  10. implicit def PackIdentityWriter: Writer[Document]

    Definition Classes
    GenericCollection
  11. def aggregate(firstOperator: PipelineOperator, otherOperators: List[PipelineOperator], explain: Boolean, allowDiskUse: Boolean, bypassDocumentValidation: Boolean, readConcern: Option[ReadConcern])(implicit ec: ExecutionContext): Future[commands.JSONAggregationFramework.AggregationResult]

    Definition Classes
    GenericCollection
  12. def aggregateWith1[T](explain: Boolean, allowDiskUse: Boolean, bypassDocumentValidation: Boolean, readConcern: Option[ReadConcern], readPreference: ReadPreference, batchSize: Option[Int])(f: (AggregationFramework) ⇒ (PipelineOperator, List[PipelineOperator]))(implicit ec: ExecutionContext, reader: Reader[T], cf: CursorFlattener[Cursor], cp: CursorProducer[T]): ProducedCursor

    Definition Classes
    GenericCollection
  13. def aggregatorContext[T](firstOperator: PipelineOperator, otherOperators: List[PipelineOperator], explain: Boolean, allowDiskUse: Boolean, bypassDocumentValidation: Boolean, readConcern: Option[ReadConcern], readPreference: ReadPreference, batchSize: Option[Int])(implicit reader: Reader[T]): AggregatorContext[T]

    Definition Classes
    GenericCollection
  14. def as[C <: Collection](failoverStrategy: FailoverStrategy)(implicit producer: CollectionProducer[C]): C

    Definition Classes
    Collection
  15. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  16. def bulkInsert(documents: Stream[Document], ordered: Boolean, writeConcern: WriteConcern, bulkSize: Int, bulkByteSize: Int)(implicit ec: ExecutionContext): Future[MultiBulkWriteResult]

    Definition Classes
    GenericCollection
  17. def bulkInsert(documents: Stream[Document], ordered: Boolean, writeConcern: WriteConcern)(implicit ec: ExecutionContext): Future[MultiBulkWriteResult]

    Definition Classes
    GenericCollection
  18. def bulkInsert(documents: Stream[Document], ordered: Boolean)(implicit ec: ExecutionContext): Future[MultiBulkWriteResult]

    Definition Classes
    GenericCollection
  19. def bulkInsert(ordered: Boolean, writeConcern: WriteConcern, bulkSize: Int, bulkByteSize: Int)(documents: ImplicitlyDocumentProducer*)(implicit ec: ExecutionContext): Future[MultiBulkWriteResult]

    Definition Classes
    GenericCollection
  20. def bulkInsert(ordered: Boolean, writeConcern: WriteConcern)(documents: ImplicitlyDocumentProducer*)(implicit ec: ExecutionContext): Future[MultiBulkWriteResult]

    Definition Classes
    GenericCollection
  21. def bulkInsert(ordered: Boolean)(documents: ImplicitlyDocumentProducer*)(implicit ec: ExecutionContext): Future[MultiBulkWriteResult]

    Definition Classes
    GenericCollection
  22. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. def convertToCapped(size: Long, maxDocuments: Option[Int])(implicit ec: ExecutionContext): Future[Unit]

    Definition Classes
    CollectionMetaCommands
  24. def count[H](selector: Option[Document], limit: Int, skip: Int, hint: Option[H])(implicit h: (H) ⇒ JSONBatchCommands.JSONCountCommand.Hint, ec: ExecutionContext): Future[Int]

    Definition Classes
    GenericCollection
  25. def create(autoIndexId: Boolean)(implicit ec: ExecutionContext): Future[Unit]

    Definition Classes
    CollectionMetaCommands
  26. def createCapped(size: Long, maxDocuments: Option[Int], autoIndexId: Boolean)(implicit ec: ExecutionContext): Future[Unit]

    Definition Classes
    CollectionMetaCommands
  27. val db: DB

    Definition Classes
    JSONCollection → Collection
  28. def distinct[T, M[_] <: Iterable[_]](key: String, selector: Option[Document], readConcern: ReadConcern)(implicit reader: NarrowValueReader[T], ec: ExecutionContext, cbf: CanBuildFrom[M[_], T, M[T]]): Future[M[T]]

    Definition Classes
    GenericCollection
  29. def drop(failIfNotFound: Boolean)(implicit ec: ExecutionContext): Future[Boolean]

    Definition Classes
    CollectionMetaCommands
  30. def ensuring(cond: (JSONCollection) ⇒ Boolean, msg: ⇒ Any): JSONCollection

    Implicit information
    This member is added by an implicit conversion from JSONCollection to Ensuring[JSONCollection] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. def ensuring(cond: (JSONCollection) ⇒ Boolean): JSONCollection

    Implicit information
    This member is added by an implicit conversion from JSONCollection to Ensuring[JSONCollection] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. def ensuring(cond: Boolean, msg: ⇒ Any): JSONCollection

    Implicit information
    This member is added by an implicit conversion from JSONCollection to Ensuring[JSONCollection] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. def ensuring(cond: Boolean): JSONCollection

    Implicit information
    This member is added by an implicit conversion from JSONCollection to Ensuring[JSONCollection] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  34. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  36. val failoverStrategy: FailoverStrategy

    Definition Classes
    JSONCollection → GenericCollection → Collection
  37. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  38. def find[S, J](selector: S, projection: J)(implicit swriter: Writer[S], pwriter: Writer[J]): GenericQueryBuilder[pack.type]

    Definition Classes
    GenericCollection
  39. def find[S](selector: S)(implicit swriter: Writer[S]): GenericQueryBuilder[pack.type]

    Definition Classes
    GenericCollection
  40. def findAndModify[S](selector: S, modifier: commands.JSONFindAndModifyCommand.Modify, sort: Option[Document], fields: Option[Document])(implicit swriter: Writer[S], ec: ExecutionContext): Future[commands.JSONFindAndModifyCommand.FindAndModifyResult]

    Definition Classes
    GenericCollection
  41. def findAndRemove[S](selector: S, sort: Option[Document], fields: Option[Document])(implicit swriter: Writer[S], ec: ExecutionContext): Future[commands.JSONFindAndModifyCommand.FindAndModifyResult]

    Definition Classes
    GenericCollection
  42. def findAndUpdate[S, T](selector: S, update: T, fetchNewObject: Boolean, upsert: Boolean, sort: Option[Document], fields: Option[Document])(implicit swriter: Writer[S], writer: Writer[T], ec: ExecutionContext): Future[commands.JSONFindAndModifyCommand.FindAndModifyResult]

    Definition Classes
    GenericCollection
  43. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from JSONCollection to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  44. def fullCollectionName: String

    Definition Classes
    Collection
  45. def genericQueryBuilder: GenericQueryBuilder[JSONSerializationPack.type]

    Definition Classes
    JSONCollection → GenericCollection
  46. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  48. def indexesManager(implicit ec: ExecutionContext): CollectionIndexesManager

    Definition Classes
    CollectionMetaCommands
  49. def insert[T](document: T, writeConcern: WriteConcern)(implicit writer: Writer[T], ec: ExecutionContext): Future[WriteResult]

    Definition Classes
    GenericCollection
  50. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  51. val name: String

    Definition Classes
    JSONCollection → Collection
  52. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  55. val pack: JSONSerializationPack.type

    Definition Classes
    JSONCollection → GenericCollection → ImplicitCommandHelpers → GenericCollectionWithCommands
  56. def productIterator: Iterator[Any]

    Definition Classes
    Product
  57. def productPrefix: String

    Definition Classes
    Product
  58. val readPreference: ReadPreference

    Definition Classes
    JSONCollection → GenericCollection
  59. def remove[S](selector: S, writeConcern: WriteConcern, firstMatchOnly: Boolean)(implicit swriter: Writer[S], ec: ExecutionContext): Future[WriteResult]

    Definition Classes
    GenericCollection
  60. lazy val removeModifier: commands.JSONFindAndModifyCommand.Remove.type

    Definition Classes
    GenericCollection
  61. def runCommand[C <: CollectionCommand](command: C)(implicit writer: Writer[ResolvedCollectionCommand[C]]): CursorFetcher[pack.type, Cursor]

    Definition Classes
    GenericCollectionWithCommands
  62. def runCommand[R, C <: CollectionCommand with CommandWithResult[R]](command: C with CommandWithResult[R], readPreference: ReadPreference)(implicit writer: Writer[ResolvedCollectionCommand[C]], reader: Reader[R], ec: ExecutionContext): Future[R]

    Definition Classes
    GenericCollectionWithCommands
  63. def runValueCommand[A <: AnyVal, R <: BoxedAnyVal[A], C <: CollectionCommand with CommandWithResult[R]](command: C with CommandWithResult[R with BoxedAnyVal[A]], rp: ReadPreference)(implicit writer: Writer[ResolvedCollectionCommand[C]], reader: Reader[R], ec: ExecutionContext): Future[A]

    Definition Classes
    GenericCollectionWithCommands
  64. def runWithResponse[R, C <: CollectionCommand with CommandWithResult[R]](command: C with CommandWithResult[R], readPreference: ReadPreference)(implicit writer: Writer[ResolvedCollectionCommand[C]], reader: Reader[R], ec: ExecutionContext): Future[ResponseResult[R]]

    Definition Classes
    GenericCollectionWithCommands
  65. def runner: CommandWithPackRunner[pack.type]

    Definition Classes
    GenericCollectionWithCommands
  66. def sibling[C <: Collection](name: String, failoverStrategy: FailoverStrategy)(implicit producer: CollectionProducer[C]): C

    Definition Classes
    Collection
  67. def stats(scale: Int)(implicit ec: ExecutionContext): Future[CollStatsResult]

    Definition Classes
    CollectionMetaCommands
  68. def stats()(implicit ec: ExecutionContext): Future[CollStatsResult]

    Definition Classes
    CollectionMetaCommands
  69. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  70. def toString(): String

    Definition Classes
    AnyRef → Any
  71. def update[S, T](selector: S, update: T, writeConcern: WriteConcern, upsert: Boolean, multi: Boolean)(implicit swriter: Writer[S], writer: Writer[T], ec: ExecutionContext): Future[UpdateWriteResult]

    Definition Classes
    GenericCollection
  72. def updateModifier[U](update: U, fetchNewObject: Boolean, upsert: Boolean)(implicit updateWriter: Writer[U]): commands.JSONFindAndModifyCommand.Update

    Definition Classes
    GenericCollection
  73. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  76. def watchFailure[T](future: ⇒ Future[T]): Future[T]

    Attributes
    protected
    Definition Classes
    GenericCollection
  77. def withReadPreference(readPreference: ReadPreference): JSONCollection

    Definition Classes
    JSONCollection → GenericCollection
  78. def [B](y: B): (JSONCollection, B)

    Implicit information
    This member is added by an implicit conversion from JSONCollection to ArrowAssoc[JSONCollection] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from JSONCollection to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jSONCollection: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from JSONCollection to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jSONCollection: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def aggregate[T](firstOperator: PipelineOperator, otherOperators: List[PipelineOperator], cursor: Option[commands.JSONAggregationFramework.Cursor], explain: Boolean, allowDiskUse: Boolean, bypassDocumentValidation: Boolean, readConcern: Option[ReadConcern], readPreference: ReadPreference)(implicit ec: ExecutionContext, reader: Reader[T], cf: CursorFlattener[Cursor]): Cursor[T]

    Definition Classes
    GenericCollection
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.3) Use aggregatorContext

  2. def aggregate1[T](firstOperator: PipelineOperator, otherOperators: List[PipelineOperator], explain: Boolean, allowDiskUse: Boolean, bypassDocumentValidation: Boolean, readConcern: Option[ReadConcern], readPreference: ReadPreference, batchSize: Option[Int])(implicit ec: ExecutionContext, reader: Reader[T], cf: CursorFlattener[Cursor]): Cursor[T]

    Definition Classes
    GenericCollection
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.3) Use aggregatorContext

  3. def aggregateWith[T](explain: Boolean, allowDiskUse: Boolean, bypassDocumentValidation: Boolean, readConcern: Option[ReadConcern], readPreference: ReadPreference, batchSize: Option[Int])(f: (AggregationFramework) ⇒ (PipelineOperator, List[PipelineOperator]))(implicit ec: ExecutionContext, reader: Reader[T], cf: CursorFlattener[Cursor]): Cursor[T]

    Definition Classes
    GenericCollection
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.3) Use aggregateWith1

  4. def canEqual(that: Any): Boolean

    Definition Classes
    JSONCollection → Equals
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12-RC5)

  5. def copy(db: DB = this.db, name: String = this.name, failoverStrategy: FailoverStrategy = this.failoverStrategy): JSONCollection

    Annotations
    @deprecated
    Deprecated

    (Since version 0.12-RC5) Use the constructor with ReadPreference

  6. def drop()(implicit ec: ExecutionContext): Future[Unit]

    Definition Classes
    CollectionMetaCommands
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.0) Use drop(Boolean)

  7. def emptyCapped()(implicit ec: ExecutionContext): Future[Unit]

    Definition Classes
    CollectionMetaCommands
    Annotations
    @deprecated
    Deprecated

    (Since version 0.9) Deprecated because emptyCapped became an internal command, unavailable by default.

  8. val productArity: Int

    Definition Classes
    JSONCollection → Product
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12-RC5)

  9. def productElement(n: Int): Any

    Definition Classes
    JSONCollection → Product
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12-RC5)

  10. def rename(to: String, dropExisting: Boolean)(implicit ec: ExecutionContext): Future[Unit]

    Definition Classes
    CollectionMetaCommands
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.4) Use reactivemongo.api.DBMetaCommands.renameCollection on the admin database instead.

  11. def runCommand[R, C <: CollectionCommand with CommandWithResult[R]](command: C with CommandWithResult[R])(implicit writer: Writer[ResolvedCollectionCommand[C]], reader: Reader[R], ec: ExecutionContext): Future[R]

    Definition Classes
    GenericCollectionWithCommands
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12-RC5) Use the alternative with ReadPreference

  12. def runValueCommand[A <: AnyVal, R <: BoxedAnyVal[A], C <: CollectionCommand with CommandWithResult[R]](command: C with CommandWithResult[R with BoxedAnyVal[A]])(implicit writer: Writer[ResolvedCollectionCommand[C]], reader: Reader[R], ec: ExecutionContext): Future[A]

    Definition Classes
    GenericCollectionWithCommands
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12-RC5) Use the alternative with ReadPreference

  13. def runWithResponse[R, C <: CollectionCommand with CommandWithResult[R]](command: C with CommandWithResult[R])(implicit writer: Writer[ResolvedCollectionCommand[C]], reader: Reader[R], ec: ExecutionContext): Future[ResponseResult[R]]

    Definition Classes
    GenericCollectionWithCommands
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12-RC5) Use the alternative with ReadPreference

  14. def save[T](doc: T, writeConcern: WriteConcern = WriteConcern.Default)(implicit ec: ExecutionContext, writer: Writes[T]): Future[WriteResult]

    Inserts the document, or updates it if it already exists in the collection.

    Inserts the document, or updates it if it already exists in the collection.

    doc

    The document to save.

    writeConcern

    The write concern

    Annotations
    @deprecated
    Deprecated

    (Since version 0.11.1) Use update with upsert set to true

  15. def save(doc: Document, writeConcern: WriteConcern)(implicit ec: ExecutionContext): Future[WriteResult]

    Inserts the document, or updates it if it already exists in the collection.

    Inserts the document, or updates it if it already exists in the collection.

    doc

    The document to save.

    writeConcern

    The write concern

    Annotations
    @deprecated
    Deprecated

    (Since version Use update with upsert set to true) 0.11.1

  16. def save(doc: JsObject)(implicit ec: ExecutionContext): Future[WriteResult]

    Inserts the document, or updates it if it already exists in the collection.

    Inserts the document, or updates it if it already exists in the collection.

    doc

    The document to save.

    Annotations
    @deprecated
    Deprecated

    (Since version Use update with upsert set to true) 0.11.1

  17. def sister[C <: Collection](name: String, failoverStrategy: FailoverStrategy)(implicit producer: CollectionProducer[C]): C

    Definition Classes
    Collection
    Annotations
    @deprecated
    Deprecated

    (Since version 0.10) Consider using sibling instead

  18. def uncheckedInsert[T](document: T)(implicit writer: Writer[T]): Unit

    Definition Classes
    GenericCollection
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.0) Use insert

  19. def uncheckedRemove[T](query: T, firstMatchOnly: Boolean)(implicit writer: Writer[T], ec: ExecutionContext): Unit

    Definition Classes
    GenericCollection
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.0) Use remove

  20. def uncheckedUpdate[S, U](selector: S, update: U, upsert: Boolean, multi: Boolean)(implicit selectorWriter: Writer[S], updateWriter: Writer[U]): Unit

    Definition Classes
    GenericCollection
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.0) Use update

  21. def x: JSONCollection

    Implicit information
    This member is added by an implicit conversion from JSONCollection to ArrowAssoc[JSONCollection] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jSONCollection: ArrowAssoc[JSONCollection]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  22. def x: JSONCollection

    Implicit information
    This member is added by an implicit conversion from JSONCollection to Ensuring[JSONCollection] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jSONCollection: Ensuring[JSONCollection]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from CollectionMetaCommands

Inherited from Collection

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from JSONCollection to StringAdd

Inherited by implicit conversion any2stringfmt from JSONCollection to StringFormat

Inherited by implicit conversion any2ArrowAssoc from JSONCollection to ArrowAssoc[JSONCollection]

Inherited by implicit conversion any2Ensuring from JSONCollection to Ensuring[JSONCollection]

Ungrouped