Example usage for org.apache.poi.ss.util CellAddress formatAsString

List of usage examples for org.apache.poi.ss.util CellAddress formatAsString

Introduction

In this page you can find the example usage for org.apache.poi.ss.util CellAddress formatAsString.

Prototype

public String formatAsString() 

Source Link

Document

Same as #toString()

Usage

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);
}