trait Decompressor extends Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Decompressor
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def code: Int
  2. abstract def decompress(bytes: Array[Byte], segmentIndex: Int): Array[Byte]

Concrete Value Members

  1. def byteOrder: ByteOrder
  2. def flipEndian(bytesPerFlip: Int): Decompressor

    Internally, we use the ByteBuffer's default byte ordering (BigEndian).

    Internally, we use the ByteBuffer's default byte ordering (BigEndian). If the decompressed bytes are LittleEndian, flip 'em.

  3. def predictorCode: Int
  4. def withPredictor(predictor: Predictor): Decompressor