t

boopickle

Encoder

trait Encoder extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Encoder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def asByteBuffer: ByteBuffer

    Completes the encoding and returns the ByteBuffer

  2. abstract def asByteBuffers: Iterable[ByteBuffer]

    Completes the encoding and returns a sequence of ByteBuffers

  3. abstract def writeByte(b: Byte): Encoder

    Encodes a single byte

    Encodes a single byte

    b

    Byte to encode

  4. abstract def writeByteArray(ba: Array[Byte]): Encoder

    Encodes an array of Bytes

  5. abstract def writeByteBuffer(bb: ByteBuffer): Encoder

    Encodes a ByteBuffer by writing its length and content

    Encodes a ByteBuffer by writing its length and content

    bb

    ByteBuffer to encode

  6. abstract def writeChar(c: Char): Encoder

    Encodes a single character using UTF-8 encoding

    Encodes a single character using UTF-8 encoding

    c

    Character to encode

  7. abstract def writeDouble(d: Double): Encoder

    Encodes a double as 8 bytes

    Encodes a double as 8 bytes

    d

    Double to encode

  8. abstract def writeDoubleArray(da: Array[Double]): Encoder

    Encodes an array of Doubles

  9. abstract def writeFloat(f: Float): Encoder

    Encodes a float as 4 bytes

    Encodes a float as 4 bytes

    f

    Float to encode

  10. abstract def writeFloatArray(fa: Array[Float]): Encoder

    Encodes an array of Floats

  11. abstract def writeInt(i: Int): Encoder

    Encodes an integer

  12. abstract def writeIntArray(ia: Array[Int]): Encoder

    Encodes an array of Integers

  13. abstract def writeIntCode(intCode: Either[Byte, Int]): Encoder

    Writes either a code byte (0-15) or an Int

    Writes either a code byte (0-15) or an Int

    intCode

    Integer or a code byte

  14. abstract def writeLong(l: Long): Encoder

    Encodes a long

    Encodes a long

    l

    Long to encode

  15. abstract def writeLongCode(longCode: Either[Byte, Long]): Encoder

    Writes either a code byte (0-15) or a Long

    Writes either a code byte (0-15) or a Long

    longCode

    Long or a code byte

  16. abstract def writeRawInt(i: Int): Encoder

    Encodes an integer in 32-bits

    Encodes an integer in 32-bits

    i

    Integer to encode

  17. abstract def writeRawLong(l: Long): Encoder

    Encodes a long in 64-bits

    Encodes a long in 64-bits

    l

    Long to encode

  18. abstract def writeShort(s: Short): Encoder

    Encodes a short integer

  19. abstract def writeString(s: String): Encoder

    Encodes a string

    Encodes a string

    s

    String to encode

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped