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

com.dexcoder.commons.office.ExcelCell Maven / Gradle / Ivy

The newest version!
package com.dexcoder.commons.office;

/**
 * row中的一列数据
 *
 * Created by liyd on 7/28/14.
 */
public class ExcelCell {

    /** 列值 */
    private Object value;

    public ExcelCell() {
    }

    public ExcelCell(Object value) {
        this.value = value;
    }

    /**
     * 获取value值的字符串形式
     * 
     * @return
     */
    public String getStringValue() {
        if (this.value != null) {
            return value.toString();
        }
        return "";
    }

    public Object getValue() {
        return value;
    }

    public void setValue(Object value) {
        this.value = value;
    }

    @Override
    public String toString() {
        if (this.value != null) {
            return value.toString();
        }
        return "null";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy