com.exasol.parquetio.data.Row Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parquet-io-java Show documentation
Show all versions of parquet-io-java Show documentation
This project provides a library that reads Parquet files into Java objects.
The newest version!
package com.exasol.parquetio.data;
import java.util.List;
/**
* A Row holds set of values.
*
* It is a similar to the database record where each value maps to a column in a table.
*/
public interface Row {
/**
* Returns the list of values this Row represents.
*
* @return list of values
*/
public List