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

top.zeimao77.product.fileio.iexcel.Table Maven / Gradle / Ivy

package top.zeimao77.product.fileio.iexcel;

import java.util.List;

public class Table {

    private int sheetIndex;
    private int startRow;
    private List columnList;

    public Table() {
    }

    public Table(int sheetIndex, int startRow) {
        this.sheetIndex = sheetIndex;
        this.startRow = startRow;
    }

    public int getSheetIndex() {
        return sheetIndex;
    }

    public void setSheetIndex(int sheetIndex) {
        this.sheetIndex = sheetIndex;
    }

    public int getStartRow() {
        return startRow;
    }

    public void setStartRow(int startRow) {
        this.startRow = startRow;
    }

    public static class Column {
        private String field;
        private int index;

        private Class javaType;

        public String getField() {
            return field;
        }

        public void setField(String field) {
            this.field = field;
        }

        public int getIndex() {
            return index;
        }

        public void setIndex(int index) {
            this.index = index;
        }

        public Class getJavaType() {
            return javaType;
        }

        public void setJavaType(Class javaType) {
            this.javaType = javaType;
        }
    }

    public List getColumnList() {
        return columnList;
    }

    public void setColumnList(List columnList) {
        this.columnList = columnList;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy