io.github.sinri.keel.poi.excel.entity.KeelSheetMatrixTemplatedRow 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.excel.entity;
import io.vertx.core.json.JsonObject;
import javax.annotation.Nonnull;
import java.util.List;
/**
* @since 3.0.13
* @since 3.0.18 Finished Technical Preview.
*/
public interface KeelSheetMatrixTemplatedRow {
static KeelSheetMatrixTemplatedRow create(@Nonnull KeelSheetMatrixRowTemplate template, @Nonnull List rawRow) {
return new KeelSheetMatrixTemplatedRowImpl(template, rawRow);
}
KeelSheetMatrixRowTemplate getTemplate();
String getColumnValue(int i);
String getColumnValue(String name);
List getRawRow();
JsonObject toJsonObject();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy