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

com.github.dreamroute.excel.helper.util.HeaderInfo Maven / Gradle / Ivy

The newest version!
package com.github.dreamroute.excel.helper.util;

import java.lang.reflect.Field;

import org.apache.poi.ss.usermodel.CellType;

/**
 * 
 * @author [email protected]
 *
 */
public class HeaderInfo {
    private CellType cellType;
    private Field field;

    public HeaderInfo(CellType cellType, Field field) {
        this.cellType = cellType;
        this.field = field;
    }

    public CellType getCellType() {
        return cellType;
    }

    public void setCellType(CellType cellType) {
        this.cellType = cellType;
    }

    public Field getField() {
        return field;
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy