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

tech.tablesaw.io.saw.ReadOptions Maven / Gradle / Ivy

There is a newer version: 0.43.3
Show newest version
package tech.tablesaw.io.saw;

import com.google.common.base.Preconditions;
import com.google.common.collect.Lists;
import java.util.ArrayList;
import java.util.List;

/**
 * Specifies options for reading a table from Saw storage
 *
 * 

Note: There is no CompressionType option for reading. The CompressionType is read from the Saw * metadata file as it must match what was used when the data was written */ public class ReadOptions { private static final int READER_POOL_SIZE = 8; private List selectedColumns = new ArrayList<>(); private int threadPoolSize = READER_POOL_SIZE; public static ReadOptions defaultOptions() { return new ReadOptions(); } public ReadOptions threadPoolSize(int size) { Preconditions.checkArgument(size > 0); this.threadPoolSize = size; return this; } public ReadOptions selectedColumns(String... columnNames) { this.selectedColumns = Lists.newArrayList(columnNames); return this; } public ReadOptions selectedColumns(List columnNames) { this.selectedColumns = columnNames; return this; } public List getSelectedColumns() { return selectedColumns; } public int getThreadPoolSize() { return threadPoolSize; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy