All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jasonruckman.sidney.bitpacking.Packers Maven / Gradle / Ivy

The newest version!
package com.github.jasonruckman.sidney.bitpacking;

public enum Packers {
  LITTLE_ENDIAN {
    @Override
    public Int32BytePacker packer32(int bitwidth) {
      return ByteBitPacking32BitLE.factory.newBytePacker(bitwidth);
    }
  },
  BIG_ENDIAN {
    @Override
    public Int32BytePacker packer32(int bitwidth) {
      return ByteBitPacking32BitBE.factory.newBytePacker(bitwidth);
    }
  };

  public abstract Int32BytePacker packer32(int bitwidth);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy