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

com.alibaba.excel.metadata.AbstractCell Maven / Gradle / Ivy

package com.alibaba.excel.metadata;

import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;

/**
 * cell
 *
 * @author Jiaju Zhuang
 **/
@Getter
@Setter
@EqualsAndHashCode
public class AbstractCell implements Cell {
    /**
     * Row index
     */
    private Integer rowIndex;
    /**
     * Column index
     */
    private Integer columnIndex;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy