Packages

sealed trait Blob extends AnyRef

A Blob represents an arbitrary piece of binary data that fits in memory.

Its underlying data structure enables several types of layouts, as well as efficient concatenation.

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

Abstract Value Members

  1. abstract def apply(i: Int): Byte
  2. abstract def isEmpty: Boolean
  3. abstract def size: Int

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ++(other: Blob): Blob
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def asByteBuffer: ByteBuffer
  6. def asByteBuffer(offset: Int, size: Int): ByteBuffer
  7. def asByteBufferUnsafe: ByteBuffer
  8. def asByteBufferUnsafe(offset: Int, size: Int): ByteBuffer
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  11. def concat(other: Blob): Blob
  12. def copyToArray(xs: Array[Byte], start: Int, offset: Int, size: Int): Unit
  13. def copyToBuffer(buffer: ByteBuffer, offset: Int, size: Int): Int
  14. def copyToStream(s: OutputStream, offset: Int, size: Int): Unit
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  18. def foreach(f: (Byte) => Unit): Unit
  19. def foreachWithIndex(f: (Byte, Int) => Unit): Unit
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. def sameBytesAs(other: Blob): Boolean
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toArray: Array[Byte]
  29. def toArraySliceBlob: ArraySliceBlob
  30. def toArrayUnsafe: Array[Byte]
  31. final def toBase64String: String
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def toUTF8String: String
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped