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

cn.ocoop.framework.common.excel.CellData Maven / Gradle / Ivy

The newest version!
package cn.ocoop.framework.common.excel;

import lombok.Data;
import org.apache.commons.lang3.StringUtils;

@Data
public class CellData {
    private int index;
    private Object value;
    private Object typedValue;
    private String message;

    public CellData(int index, Object value) {
        this.index = index;
        this.value = value;
    }

    public CellData(int index, Object value, String message) {
        this.index = index;
        this.value = value;
        this.message = message;
    }

    public boolean hasError() {
        return StringUtils.isNotBlank(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy