io.github.sinri.keel.poi.csv.CsvRow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Keel Show documentation
Show all versions of Keel Show documentation
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