List of usage examples for org.apache.poi.ss.util CellAddress formatAsString
public String formatAsString()
From source file:utilities.SmapSheetXMLHandler.java
License:Apache License
/** * Output an empty-cell comment./*from www . j a va 2s . c o m*/ */ private void outputEmptyCellComment(CellAddress cellRef) { XSSFComment comment = comments.findCellComment(cellRef); output.cell(cellRef.formatAsString(), null, comment, nextDataType, formatString); }