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

org.dflib.builder.DataFrameArrayAppender Maven / Gradle / Ivy

There is a newer version: 1.0.0-RC1
Show newest version
package org.dflib.builder;

/**
 * Assembles a DataFrame from a sequence of Object arrays. Supports source transformations, including generation of
 * primitive columns, etc.
 *
 * @since 0.16
 */
public class DataFrameArrayAppender extends DataFrameAppender {

    protected DataFrameArrayAppender(RowAccum rowAccum) {
        super(rowAccum);
    }

    /**
     * Appends a single row, extracting data from the supplied array vararg.
     */
    @Override
    public DataFrameArrayAppender append(Object... rowSource) {
        super.append(rowSource);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy