You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by on...@apache.org on 2016/08/22 17:40:36 UTC

svn commit: r1757233 - /poi/site/src/documentation/content/xdocs/spreadsheet/quick-guide.xml

Author: onealj
Date: Mon Aug 22 17:40:36 2016
New Revision: 1757233

URL: http://svn.apache.org/viewvc?rev=1757233&view=rev
Log:
bug 59791: getCellType->int, getCellTypeEnum->CellType enum

Modified:
    poi/site/src/documentation/content/xdocs/spreadsheet/quick-guide.xml

Modified: poi/site/src/documentation/content/xdocs/spreadsheet/quick-guide.xml
URL: http://svn.apache.org/viewvc/poi/site/src/documentation/content/xdocs/spreadsheet/quick-guide.xml?rev=1757233&r1=1757232&r2=1757233&view=diff
==============================================================================
--- poi/site/src/documentation/content/xdocs/spreadsheet/quick-guide.xml (original)
+++ poi/site/src/documentation/content/xdocs/spreadsheet/quick-guide.xml Mon Aug 22 17:40:36 2016
@@ -405,7 +405,7 @@
             System.out.print(cellRef.formatAsString());
             System.out.print(" - ");
 
-            switch (cell.getCellType()) {
+            switch (cell.getCellTypeEnum()) {
                 case CellType.STRING:
                     System.out.println(cell.getRichStringCellValue().getString());
                     break;



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org