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

com.yahoo.sketches.hll.DenseCompressedFieldsFactory Maven / Gradle / Ivy

There is a newer version: 0.13.4
Show newest version
/*
 * Copyright 2015-16, Yahoo! Inc.
 * Licensed under the terms of the Apache License 2.0. See LICENSE file at the project root for terms.
 */

package com.yahoo.sketches.hll;

/**
 * @author Kevin Lang
 */
final class DenseCompressedFieldsFactory implements FieldsFactory {

  @Override
  public Fields make(Preamble preamble) {
    return new OnHeapCompressedFields(preamble);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy