Object/Class

reactivemongo.api.bson

BSONObjectID

Related Docs: class BSONObjectID | package bson

Permalink

object BSONObjectID

BSONObjectID utilities

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BSONObjectID
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def fromTime(timeMillis: Long, fillOnlyTimestamp: Boolean = false): BSONObjectID

    Permalink

    Generates a new BSON ObjectID from the given timestamp in milliseconds.

    Generates a new BSON ObjectID from the given timestamp in milliseconds.

    The included timestamp is the number of seconds since epoch, so a BSONObjectID time part has only a precision up to the second.

    To get a reasonably unique ID, you _must_ set onlyTimestamp to false.

    Crafting an ID from a timestamp with fillOnlyTimestamp set to true is helpful for range queries; e.g if you want of find documents an _id field which timestamp part is greater than or lesser than the one of another id.

    If you do not intend to use the produced BSONObjectID for range queries, then you'd rather use the generate method instead.

    fillOnlyTimestamp

    if true, the returned BSONObjectID will only have the timestamp bytes set; the other will be set to zero.

  10. def generate(): BSONObjectID

    Permalink

    Generates a new BSON ObjectID using the current time as seed.

    Generates a new BSON ObjectID using the current time as seed.

    See also

    fromTime

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. def parse(bytes: Array[Byte]): Try[BSONObjectID]

    Permalink

    Tries to make a BSON ObjectId from a binary representation.

  18. def parse(id: String): Try[BSONObjectID]

    Permalink

    Tries to make a BSON ObjectId from a hexadecimal string representation.

  19. def pretty(oid: BSONObjectID): String

    Permalink

    Returns the string representation for the given BSONObjectID.

    Returns the string representation for the given BSONObjectID.

    Annotations
    @inline()
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  22. def unapply(that: Any): Option[Array[Byte]]

    Permalink

    Extracts the bytes if that's a BSONObjectID.

  23. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped