private static HashType getHashType()

in src/main/java/com/spotify/sparkey/IndexHeader.java [115:123]


  private static HashType getHashType(int size) {
    if (size == 4) {
      return HashType.HASH_32_BITS;
    } else if (size == 8) {
      return HashType.HASH_64_BITS;
    } else {
      throw new IllegalArgumentException("Can't support hash size " + size);
    }
  }