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

spreadsheet.mapper.model.core.Cell Maven / Gradle / Ivy

The newest version!
package spreadsheet.mapper.model.core;

import java.io.Serializable;

/**
 * cell
 * 

* Created by hanwen on 15-12-16. */ public interface Cell extends Serializable { /** * cell value * * @return value */ String getValue(); /** * cell column index * * @return 1-based */ int getIndex(); /** * @return the row of this */ Row getRow(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy