org.ifinalframework.poi.ExcelGenerator Maven / Gradle / Ivy
/*
* Copyright 2020-2022 the original author or authors.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.ifinalframework.poi;
import org.springframework.lang.NonNull;
import org.springframework.lang.Nullable;
import org.ifinalframework.poi.model.MergedRegion;
import org.ifinalframework.poi.model.Style;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.Font;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.List;
/**
* ExcelGenerator.
*
* @author ilikly
* @version 1.0.0
* @since 1.0.0
*/
public interface ExcelGenerator {
@NonNull
CellStyle createCellStyle(@NonNull Style style);
@NonNull
Font createFont(@NonNull org.ifinalframework.poi.model.Font font);
@NonNull
Sheet createSheet(@NonNull org.ifinalframework.poi.model.Sheet sheet);
@NonNull
Row createRow(@NonNull Sheet sheet, @NonNull org.ifinalframework.poi.model.Row row);
@NonNull
Cell createCell(@NonNull Row row, @NonNull org.ifinalframework.poi.model.Cell cell);
@Nullable
CellStyle getCellStyle(@Nullable String style);
@NonNull
Sheet getSheet(int index);
default void writeRow(@NonNull org.ifinalframework.poi.model.Row row, @Nullable Object data) {
writeRow(0, row, data);
}
void writeRow(int index, @NonNull org.ifinalframework.poi.model.Row row, @Nullable Object data);
void writeRow(@NonNull Sheet sheet, @NonNull org.ifinalframework.poi.model.Row row, @Nullable Object data);
void writeCell(@NonNull Cell rowCell, @NonNull org.ifinalframework.poi.model.Cell cell, @Nullable Object data);
default void addMergedRegions(List mergedRegions) {
addMergedRegions(0, mergedRegions);
}
void addMergedRegions(int index, List mergedRegions);
void write(@NonNull OutputStream os) throws IOException;
default void write(@NonNull String filename) throws IOException {
write(new FileOutputStream(filename));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy