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

io.github.sinri.keel.poi.csv.CsvRow Maven / Gradle / Ivy

Go to download

A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.

The newest version!
package io.github.sinri.keel.poi.csv;

import io.github.sinri.keel.core.TechnicalPreview;

import javax.annotation.Nonnull;
import java.util.ArrayList;
import java.util.List;

/**
 * @since 3.1.1 Technical Preview
 */
@TechnicalPreview(since = "3.1.1")
public class CsvRow {
    private final List cells = new ArrayList<>();

    public CsvRow addCell(@Nonnull CsvCell cell) {
        this.cells.add(cell);
        return this;
    }

    @Nonnull
    public CsvCell getCell(int i) {
        return cells.get(i);
    }

    public int size() {
        return this.cells.size();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy