
spreadsheet.mapper.model.core.Cell Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spreadsheet-mapper Show documentation
Show all versions of spreadsheet-mapper Show documentation
java mapping library between spreadsheet and object
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