Author: fanningpj
Date: Mon Sep 18 16:31:55 2017
New Revision: 1808741

URL: http://svn.apache.org/viewvc?rev=1808741&view=rev
Log:
use non-deprecated versions of getCellType

Modified:
    poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVSheetTable.java
    poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVTableCellEditor.java
    poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVTableCellRenderer.java
    poi/trunk/src/examples/src/org/apache/poi/ss/examples/ToCSV.java
    poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFHyperlink.java
    poi/trunk/src/java/org/apache/poi/ss/formula/SheetRefEvaluator.java
    poi/trunk/src/java/org/apache/poi/ss/usermodel/DataFormatter.java
    poi/trunk/src/java/org/apache/poi/ss/usermodel/charts/DataSources.java
    poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java
    poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFRow.java
    
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFFormulaUtils.java
    
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/BaseTestXSSFPivotTable.java
    
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFFormulaParser.java
    
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFHyperlink.java
    
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFSheet.java
    
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFSheetShiftRows.java
    
poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/model/TestHyperlink.java
    
poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/usermodel/TestBugs.java
    poi/trunk/src/testcases/org/apache/poi/hssf/model/TestFormulaParserEval.java
    poi/trunk/src/testcases/org/apache/poi/hssf/model/TestRVA.java
    
poi/trunk/src/testcases/org/apache/poi/hssf/record/TestSharedFormulaRecord.java
    poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestBug42464.java
    
poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestExternalReferenceChange.java
    
poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFDataFormatter.java
    poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestWorkbook.java
    poi/trunk/src/testcases/org/apache/poi/ss/formula/atp/TestIfError.java
    
poi/trunk/src/testcases/org/apache/poi/ss/formula/atp/TestYearFracCalculatorFromSpreadsheet.java
    poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestFormulaBugs.java
    poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestPercentEval.java
    poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestAddress.java
    
poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestCalendarFieldFunction.java
    poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestClean.java
    poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestIrr.java
    
poi/trunk/src/testcases/org/apache/poi/ss/usermodel/BaseTestSheetShiftRows.java

Modified: poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVSheetTable.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVSheetTable.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVSheetTable.java 
(original)
+++ poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVSheetTable.java Mon 
Sep 18 16:31:55 2017
@@ -144,7 +144,7 @@ public class SVSheetTable extends JTable
       HSSFCell cell = (HSSFCell) getValueAt(row, col);
       String formula = "";
       if (cell != null) {
-        if (cell.getCellTypeEnum() == CellType.FORMULA) {
+        if (cell.getCellType() == CellType.FORMULA) {
           formula = cell.getCellFormula();
         } else {
           formula = cell.toString();

Modified: 
poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVTableCellEditor.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVTableCellEditor.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVTableCellEditor.java 
(original)
+++ poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVTableCellEditor.java 
Mon Sep 18 16:31:55 2017
@@ -166,7 +166,7 @@ public class SVTableCellEditor extends A
 
 
       //Set the value that is rendered for the cell
-      switch (cell.getCellTypeEnum()) {
+      switch (cell.getCellType()) {
         case BLANK:
           editor.setText("");
           break;

Modified: 
poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVTableCellRenderer.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVTableCellRenderer.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVTableCellRenderer.java 
(original)
+++ 
poi/trunk/src/examples/src/org/apache/poi/hssf/view/SVTableCellRenderer.java 
Mon Sep 18 16:31:55 2017
@@ -168,7 +168,7 @@ public class SVTableCellRenderer extends
             isBorderSet=true;
 
             //Set the value that is rendered for the cell
-            switch (c.getCellTypeEnum()) {
+            switch (c.getCellType()) {
               case BLANK:
                 setValue("");
               break;

Modified: poi/trunk/src/examples/src/org/apache/poi/ss/examples/ToCSV.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/examples/src/org/apache/poi/ss/examples/ToCSV.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/examples/src/org/apache/poi/ss/examples/ToCSV.java (original)
+++ poi/trunk/src/examples/src/org/apache/poi/ss/examples/ToCSV.java Mon Sep 18 
16:31:55 2017
@@ -544,7 +544,7 @@ public class ToCSV {
                     csvLine.add("");
                 }
                 else {
-                    if(cell.getCellTypeEnum() != CellType.FORMULA) {
+                    if(cell.getCellType() != CellType.FORMULA) {
                         csvLine.add(this.formatter.formatCellValue(cell));
                     }
                     else {

Modified: poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFHyperlink.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFHyperlink.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFHyperlink.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFHyperlink.java Mon Sep 
18 16:31:55 2017
@@ -102,7 +102,7 @@ public class HSSFHyperlink implements Hy
             link_type = getType(record);
         }
         else {
-            link_type = other.getTypeEnum();
+            link_type = other.getType();
             record = new HyperlinkRecord();
             setFirstRow(other.getFirstRow());
             setFirstColumn(other.getFirstColumn());

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/SheetRefEvaluator.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/SheetRefEvaluator.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/SheetRefEvaluator.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/SheetRefEvaluator.java Mon Sep 
18 16:31:55 2017
@@ -62,7 +62,7 @@ final class SheetRefEvaluator {
     public boolean isSubTotal(int rowIndex, int columnIndex){
         boolean subtotal = false;
         EvaluationCell cell = getSheet().getCell(rowIndex, columnIndex);
-        if(cell != null && cell.getCellTypeEnum() == CellType.FORMULA){
+        if(cell != null && cell.getCellType() == CellType.FORMULA){
             EvaluationWorkbook wb = _bookEvaluator.getWorkbook();
             for(Ptg ptg : wb.getFormulaTokens(cell)){
                 if(ptg instanceof FuncVarPtg){

Modified: poi/trunk/src/java/org/apache/poi/ss/usermodel/DataFormatter.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/DataFormatter.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/usermodel/DataFormatter.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/usermodel/DataFormatter.java Mon Sep 
18 16:31:55 2017
@@ -978,7 +978,7 @@ public class DataFormatter implements Ob
             return "";
         }
 
-        CellType cellType = cell.getCellTypeEnum();
+        CellType cellType = cell.getCellType();
         if (cellType == CellType.FORMULA) {
             if (evaluator == null) {
                 return cell.getCellFormula();

Modified: poi/trunk/src/java/org/apache/poi/ss/usermodel/charts/DataSources.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/charts/DataSources.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/usermodel/charts/DataSources.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/usermodel/charts/DataSources.java Mon 
Sep 18 16:31:55 2017
@@ -42,7 +42,7 @@ public class DataSources {
         return new AbstractCellRangeDataSource<Number>(sheet, 
cellRangeAddress) {
             public Number getPointAt(int index) {
                 CellValue cellValue = getCellValueAt(index);
-                if (cellValue != null && cellValue.getCellTypeEnum() == 
CellType.NUMERIC) {
+                if (cellValue != null && cellValue.getCellType() == 
CellType.NUMERIC) {
                     return Double.valueOf(cellValue.getNumberValue());
                 } else {
                     return null;
@@ -59,7 +59,7 @@ public class DataSources {
         return new AbstractCellRangeDataSource<String>(sheet, 
cellRangeAddress) {
             public String getPointAt(int index) {
                 CellValue cellValue = getCellValueAt(index);
-                if (cellValue != null && cellValue.getCellTypeEnum() == 
CellType.STRING) {
+                if (cellValue != null && cellValue.getCellType() == 
CellType.STRING) {
                     return cellValue.getStringValue();
                 } else {
                     return null;

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java Mon 
Sep 18 16:31:55 2017
@@ -392,7 +392,7 @@ public class SXSSFCell implements Cell {
      * For strings we throw an exception. For blank cells we return a null.
      * </p>
      * @return the value of the cell as a date
-     * @throws IllegalStateException if the cell type returned by {@link 
#getCellTypeEnum()} is CellType.STRING
+     * @throws IllegalStateException if the cell type returned by {@link 
#getCellType()} is CellType.STRING
      * @exception NumberFormatException if the cell value isn't a parsable 
<code>double</code>.
      * @see org.apache.poi.ss.usermodel.DataFormatter for formatting  this 
date into a string similar to how excel does.
      */
@@ -512,7 +512,7 @@ public class SXSSFCell implements Cell {
      * For strings, numbers, and errors, we throw an exception. For blank 
cells we return a false.
      * </p>
      * @return the value of the cell as a boolean
-     * @throws IllegalStateException if the cell type returned by {@link 
#getCellTypeEnum()}
+     * @throws IllegalStateException if the cell type returned by {@link 
#getCellType()}
      *   is not CellType.BOOLEAN, CellType.BLANK or CellType.FORMULA
      */
     @Override
@@ -547,7 +547,7 @@ public class SXSSFCell implements Cell {
      * </p>
      *
      * @return the value of the cell as an error code
-     * @throws IllegalStateException if the cell type returned by {@link 
#getCellTypeEnum()} isn't CellType.ERROR
+     * @throws IllegalStateException if the cell type returned by {@link 
#getCellType()} isn't CellType.ERROR
      * @see org.apache.poi.ss.usermodel.FormulaError for error codes
      */
     @Override
@@ -727,7 +727,7 @@ public class SXSSFCell implements Cell {
      */
     @Override
     public String toString() {
-        switch (getCellTypeEnum()) {
+        switch (getCellType()) {
             case BLANK:
                 return "";
             case BOOLEAN:

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFRow.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFRow.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFRow.java 
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFRow.java Mon 
Sep 18 16:31:55 2017
@@ -256,7 +256,7 @@ public class SXSSFRow implements Row, Co
             case RETURN_NULL_AND_BLANK:
                 return cell;
             case RETURN_BLANK_AS_NULL:
-                boolean isBlank = (cell != null && cell.getCellTypeEnum() == 
CellType.BLANK);
+                boolean isBlank = (cell != null && cell.getCellType() == 
CellType.BLANK);
                 return (isBlank) ? null : cell;
             case CREATE_NULL_AS_BLANK:
                 return (cell == null) ? createCell(cellnum, CellType.BLANK) : 
cell;

Modified: 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFFormulaUtils.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFFormulaUtils.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFFormulaUtils.java
 (original)
+++ 
poi/trunk/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFFormulaUtils.java
 Mon Sep 18 16:31:55 2017
@@ -75,7 +75,7 @@ public final class XSSFFormulaUtils {
         for (Sheet sh : _wb) {
             for (Row row : sh) {
                 for (Cell cell : row) {
-                    if (cell.getCellTypeEnum() == CellType.FORMULA) {
+                    if (cell.getCellType() == CellType.FORMULA) {
                         updateFormula((XSSFCell) cell, oldName, newName);
                     }
                 }

Modified: 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/BaseTestXSSFPivotTable.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/BaseTestXSSFPivotTable.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/BaseTestXSSFPivotTable.java
 (original)
+++ 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/BaseTestXSSFPivotTable.java
 Mon Sep 18 16:31:55 2017
@@ -275,7 +275,7 @@ public abstract class BaseTestXSSFPivotT
     @Test
     public void testAddDataColumnWithOffsetData() {
         offsetPivotTable.addColumnLabel(DataConsolidateFunction.SUM, 1);
-        assertEquals(CellType.NUMERIC, offsetOuterCell.getCellTypeEnum());
+        assertEquals(CellType.NUMERIC, offsetOuterCell.getCellType());
         
         offsetPivotTable.addColumnLabel(DataConsolidateFunction.SUM, 0);
     }

Modified: 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFFormulaParser.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFFormulaParser.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFFormulaParser.java
 (original)
+++ 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFFormulaParser.java
 Mon Sep 18 16:31:55 2017
@@ -486,7 +486,7 @@ public final class TestXSSFFormulaParser
 
             for (Row row : xsheet) {
                 for (Cell cell : row) {
-                    if (cell.getCellTypeEnum() == CellType.FORMULA) {
+                    if (cell.getCellType() == CellType.FORMULA) {
                         try {
                             evaluator.evaluateFormulaCell(cell);
                         } catch (Exception e) {

Modified: 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFHyperlink.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFHyperlink.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFHyperlink.java
 (original)
+++ 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFHyperlink.java
 Mon Sep 18 16:31:55 2017
@@ -158,7 +158,7 @@ public final class TestXSSFHyperlink ext
         doTestHyperlinkContents(sheet);
 
         assertEquals(HyperlinkType.URL,
-                sheet.getRow(17).getCell(2).getHyperlink().getTypeEnum());
+                sheet.getRow(17).getCell(2).getHyperlink().getType());
         assertEquals("POI SS Link",
                 sheet.getRow(17).getCell(2).getHyperlink().getLabel());
         assertEquals("http://poi.apache.org/spreadsheet/";,
@@ -179,7 +179,7 @@ public final class TestXSSFHyperlink ext
         doTestHyperlinkContents(sheet);
 
         assertEquals(HyperlinkType.URL,
-                sheet.getRow(17).getCell(2).getHyperlink().getTypeEnum());
+                sheet.getRow(17).getCell(2).getHyperlink().getType());
         assertEquals("POI SS Link",
                 sheet.getRow(17).getCell(2).getHyperlink().getLabel());
         assertEquals("http://poi.apache.org/spreadsheet/";,
@@ -197,7 +197,7 @@ public final class TestXSSFHyperlink ext
 
         // First is a link to poi
         assertEquals(HyperlinkType.URL,
-                sheet.getRow(3).getCell(2).getHyperlink().getTypeEnum());
+                sheet.getRow(3).getCell(2).getHyperlink().getType());
         assertEquals(null,
                 sheet.getRow(3).getCell(2).getHyperlink().getLabel());
         assertEquals("http://poi.apache.org/";,
@@ -205,7 +205,7 @@ public final class TestXSSFHyperlink ext
 
         // Next is an internal doc link
         assertEquals(HyperlinkType.DOCUMENT,
-                sheet.getRow(14).getCell(2).getHyperlink().getTypeEnum());
+                sheet.getRow(14).getCell(2).getHyperlink().getType());
         assertEquals("Internal hyperlink to A2",
                 sheet.getRow(14).getCell(2).getHyperlink().getLabel());
         assertEquals("Sheet1!A2",
@@ -213,7 +213,7 @@ public final class TestXSSFHyperlink ext
 
         // Next is a file
         assertEquals(HyperlinkType.FILE,
-                sheet.getRow(15).getCell(2).getHyperlink().getTypeEnum());
+                sheet.getRow(15).getCell(2).getHyperlink().getType());
         assertEquals(null,
                 sheet.getRow(15).getCell(2).getHyperlink().getLabel());
         assertEquals("WithVariousData.xlsx",
@@ -221,7 +221,7 @@ public final class TestXSSFHyperlink ext
 
         // Last is a mailto
         assertEquals(HyperlinkType.EMAIL,
-                sheet.getRow(16).getCell(2).getHyperlink().getTypeEnum());
+                sheet.getRow(16).getCell(2).getHyperlink().getType());
         assertEquals(null,
                 sheet.getRow(16).getCell(2).getHyperlink().getLabel());
         assertEquals("mailto:d...@poi.apache.org?subject=XSSF%20Hyperlinks";,
@@ -238,13 +238,13 @@ public final class TestXSSFHyperlink ext
 
         assertEquals(sh1.getNumberOfComments(), sh2.getNumberOfComments());
         XSSFHyperlink l1 = sh1.getHyperlink(0, 1);
-        assertEquals(HyperlinkType.DOCUMENT, l1.getTypeEnum());
+        assertEquals(HyperlinkType.DOCUMENT, l1.getType());
         assertEquals("B1", l1.getCellRef());
         assertEquals("Sort on Titel", l1.getTooltip());
 
         XSSFHyperlink l2 = sh2.getHyperlink(0, 1);
         assertEquals(l1.getTooltip(), l2.getTooltip());
-        assertEquals(HyperlinkType.DOCUMENT, l2.getTypeEnum());
+        assertEquals(HyperlinkType.DOCUMENT, l2.getType());
         assertEquals("B1", l2.getCellRef());
     }
 
@@ -309,22 +309,22 @@ public final class TestXSSFHyperlink ext
         
         XSSFHyperlink link = sh.getHyperlink(A2);
         assertEquals("address", "A2", link.getCellRef());
-        assertEquals("link type", HyperlinkType.URL, link.getTypeEnum());
+        assertEquals("link type", HyperlinkType.URL, link.getType());
         assertEquals("link target", "http://twitter.com/#!/apacheorg";, 
link.getAddress());
         
         link = sh.getHyperlink(A3);
         assertEquals("address", "A3", link.getCellRef());
-        assertEquals("link type", HyperlinkType.URL, link.getTypeEnum());
+        assertEquals("link type", HyperlinkType.URL, link.getType());
         assertEquals("link target", "http://www.bailii.org/databases.html#ie";, 
link.getAddress());
         
         link = sh.getHyperlink(A4);
         assertEquals("address", "A4", link.getCellRef());
-        assertEquals("link type", HyperlinkType.URL, link.getTypeEnum());
+        assertEquals("link type", HyperlinkType.URL, link.getType());
         assertEquals("link target", 
"https://en.wikipedia.org/wiki/Apache_POI#See_also";, link.getAddress());
         
         link = sh.getHyperlink(A7);
         assertEquals("address", "A7", link.getCellRef());
-        assertEquals("link type", HyperlinkType.DOCUMENT, link.getTypeEnum());
+        assertEquals("link type", HyperlinkType.DOCUMENT, link.getType());
         assertEquals("link target", "Sheet1", link.getAddress());
         
         wb.close();

Modified: 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFSheet.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFSheet.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFSheet.java 
(original)
+++ 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFSheet.java 
Mon Sep 18 16:31:55 2017
@@ -1470,44 +1470,44 @@ public final class TestXSSFSheet extends
 
         // Blank
         cell = CellUtil.getCell(destRow, col++);
-        assertEquals("[Blank] C7 cell type", CellType.BLANK, 
cell.getCellTypeEnum());
+        assertEquals("[Blank] C7 cell type", CellType.BLANK, 
cell.getCellType());
 
         // Error
         cell = CellUtil.getCell(destRow, col++);
-        assertEquals("[Error] D7 cell type", CellType.ERROR, 
cell.getCellTypeEnum());
+        assertEquals("[Error] D7 cell type", CellType.ERROR, 
cell.getCellType());
         final FormulaError error = 
FormulaError.forInt(cell.getErrorCellValue());
         assertEquals("[Error] D7 cell value", FormulaError.NA, error); 
//FIXME: XSSFCell and HSSFCell expose different interfaces. getErrorCellString 
would be helpful here
 
         // Date
         cell = CellUtil.getCell(destRow, col++);
-        assertEquals("[Date] E7 cell type", CellType.NUMERIC, 
cell.getCellTypeEnum());
+        assertEquals("[Date] E7 cell type", CellType.NUMERIC, 
cell.getCellType());
         final Date date = LocaleUtil.getLocaleCalendar(2000, Calendar.JANUARY, 
1).getTime();
         assertEquals("[Date] E7 cell value", date, cell.getDateCellValue());
 
         // Boolean
         cell = CellUtil.getCell(destRow, col++);
-        assertEquals("[Boolean] F7 cell type", CellType.BOOLEAN, 
cell.getCellTypeEnum());
+        assertEquals("[Boolean] F7 cell type", CellType.BOOLEAN, 
cell.getCellType());
         assertEquals("[Boolean] F7 cell value", true, 
cell.getBooleanCellValue());
 
         // String
         cell = CellUtil.getCell(destRow, col++);
-        assertEquals("[String] G7 cell type", CellType.STRING, 
cell.getCellTypeEnum());
+        assertEquals("[String] G7 cell type", CellType.STRING, 
cell.getCellType());
         assertEquals("[String] G7 cell value", "Hello", 
cell.getStringCellValue());
         
         // Int
         cell = CellUtil.getCell(destRow, col++);
-        assertEquals("[Int] H7 cell type", CellType.NUMERIC, 
cell.getCellTypeEnum());
+        assertEquals("[Int] H7 cell type", CellType.NUMERIC, 
cell.getCellType());
         assertEquals("[Int] H7 cell value", 15, (int) 
cell.getNumericCellValue());
         
         // Float
         cell = CellUtil.getCell(destRow, col++);
-        assertEquals("[Float] I7 cell type", CellType.NUMERIC, 
cell.getCellTypeEnum());
+        assertEquals("[Float] I7 cell type", CellType.NUMERIC, 
cell.getCellType());
         assertEquals("[Float] I7 cell value", 12.5, 
cell.getNumericCellValue(), FLOAT_PRECISION);
         
         // Cell Formula
         cell = CellUtil.getCell(destRow, col++);
         assertEquals("J7", new CellReference(cell).formatAsString());
-        assertEquals("[Cell Formula] J7 cell type", CellType.FORMULA, 
cell.getCellTypeEnum());
+        assertEquals("[Cell Formula] J7 cell type", CellType.FORMULA, 
cell.getCellType());
         assertEquals("[Cell Formula] J7 cell formula", "5+2", 
cell.getCellFormula());
         System.out.println("Cell formula evaluation currently unsupported");
         
@@ -1516,21 +1516,21 @@ public final class TestXSSFSheet extends
         cell = CellUtil.getCell(destRow, col++);
         assertEquals("K7", new CellReference(cell).formatAsString());
         assertEquals("[Cell Formula with Reference] K7 cell type",
-                CellType.FORMULA, cell.getCellTypeEnum());
+                CellType.FORMULA, cell.getCellType());
         assertEquals("[Cell Formula with Reference] K7 cell formula",
                 "J7+H$2", cell.getCellFormula());
         
         // Cell Formula with Reference spanning multiple rows
         cell = CellUtil.getCell(destRow, col++);
         assertEquals("[Cell Formula with Reference spanning multiple rows] L7 
cell type",
-                CellType.FORMULA, cell.getCellTypeEnum());
+                CellType.FORMULA, cell.getCellType());
         assertEquals("[Cell Formula with Reference spanning multiple rows] L7 
cell formula",
                 "G7&\" \"&G8", cell.getCellFormula());
         
         // Cell Formula with Reference spanning multiple rows
         cell = CellUtil.getCell(destRow, col++);
         assertEquals("[Cell Formula with Area Reference] M7 cell type",
-                CellType.FORMULA, cell.getCellTypeEnum());
+                CellType.FORMULA, cell.getCellType());
         assertEquals("[Cell Formula with Area Reference] M7 cell formula",
                 "SUM(H7:I8)", cell.getCellFormula());
         
@@ -1539,13 +1539,13 @@ public final class TestXSSFSheet extends
         System.out.println("Array formulas currently unsupported");
         // FIXME: Array Formula set with Sheet.setArrayFormula() instead of 
cell.setFormula()
         /*
-        assertEquals("[Array Formula] N7 cell type", CellType.FORMULA, 
cell.getCellTypeEnum());
+        assertEquals("[Array Formula] N7 cell type", CellType.FORMULA, 
cell.getCellType());
         assertEquals("[Array Formula] N7 cell formula", 
"{SUM(H7:J7*{1,2,3})}", cell.getCellFormula());
         */
         
         // Data Format
         cell = CellUtil.getCell(destRow, col++);
-        assertEquals("[Data Format] O7 cell type;", CellType.NUMERIC, 
cell.getCellTypeEnum());
+        assertEquals("[Data Format] O7 cell type;", CellType.NUMERIC, 
cell.getCellType());
         assertEquals("[Data Format] O7 cell value", 100.20, 
cell.getNumericCellValue(), FLOAT_PRECISION);
         //FIXME: currently fails
         final String moneyFormat = "\"$\"#,##0.00_);[Red]\\(\"$\"#,##0.00\\)";
@@ -1624,83 +1624,83 @@ public final class TestXSSFSheet extends
         // Blank
         col++;
         cell = CellUtil.getCell(destRow1, col);
-        assertEquals("[Blank] C10 cell type", CellType.BLANK, 
cell.getCellTypeEnum());
+        assertEquals("[Blank] C10 cell type", CellType.BLANK, 
cell.getCellType());
         
         cell = CellUtil.getCell(destRow2, col);
-        assertEquals("[Blank] C11 cell type", CellType.BLANK, 
cell.getCellTypeEnum());
+        assertEquals("[Blank] C11 cell type", CellType.BLANK, 
cell.getCellType());
         
         // Error
         col++;
         cell = CellUtil.getCell(destRow1, col);
-        assertEquals("[Error] D10 cell type", CellType.ERROR, 
cell.getCellTypeEnum());
+        assertEquals("[Error] D10 cell type", CellType.ERROR, 
cell.getCellType());
         FormulaError error = FormulaError.forInt(cell.getErrorCellValue());
         assertEquals("[Error] D10 cell value", FormulaError.NA, error); 
//FIXME: XSSFCell and HSSFCell expose different interfaces. getErrorCellString 
would be helpful here
         
         cell = CellUtil.getCell(destRow2, col);
-        assertEquals("[Error] D11 cell type", CellType.ERROR, 
cell.getCellTypeEnum());
+        assertEquals("[Error] D11 cell type", CellType.ERROR, 
cell.getCellType());
         error = FormulaError.forInt(cell.getErrorCellValue());
         assertEquals("[Error] D11 cell value", FormulaError.NAME, error); 
//FIXME: XSSFCell and HSSFCell expose different interfaces. getErrorCellString 
would be helpful here
         
         // Date
         col++;
         cell = CellUtil.getCell(destRow1, col);
-        assertEquals("[Date] E10 cell type", CellType.NUMERIC, 
cell.getCellTypeEnum());
+        assertEquals("[Date] E10 cell type", CellType.NUMERIC, 
cell.getCellType());
         Date date = LocaleUtil.getLocaleCalendar(2000, Calendar.JANUARY, 
1).getTime();
         assertEquals("[Date] E10 cell value", date, cell.getDateCellValue());
         
         cell = CellUtil.getCell(destRow2, col);
-        assertEquals("[Date] E11 cell type", CellType.NUMERIC, 
cell.getCellTypeEnum());
+        assertEquals("[Date] E11 cell type", CellType.NUMERIC, 
cell.getCellType());
         date = LocaleUtil.getLocaleCalendar(2000, Calendar.JANUARY, 
2).getTime();
         assertEquals("[Date] E11 cell value", date, cell.getDateCellValue());
         
         // Boolean
         col++;
         cell = CellUtil.getCell(destRow1, col);
-        assertEquals("[Boolean] F10 cell type", CellType.BOOLEAN, 
cell.getCellTypeEnum());
+        assertEquals("[Boolean] F10 cell type", CellType.BOOLEAN, 
cell.getCellType());
         assertEquals("[Boolean] F10 cell value", true, 
cell.getBooleanCellValue());
         
         cell = CellUtil.getCell(destRow2, col);
-        assertEquals("[Boolean] F11 cell type", CellType.BOOLEAN, 
cell.getCellTypeEnum());
+        assertEquals("[Boolean] F11 cell type", CellType.BOOLEAN, 
cell.getCellType());
         assertEquals("[Boolean] F11 cell value", false, 
cell.getBooleanCellValue());
         
         // String
         col++;
         cell = CellUtil.getCell(destRow1, col);
-        assertEquals("[String] G10 cell type", CellType.STRING, 
cell.getCellTypeEnum());
+        assertEquals("[String] G10 cell type", CellType.STRING, 
cell.getCellType());
         assertEquals("[String] G10 cell value", "Hello", 
cell.getStringCellValue());
         
         cell = CellUtil.getCell(destRow2, col);
-        assertEquals("[String] G11 cell type", CellType.STRING, 
cell.getCellTypeEnum());
+        assertEquals("[String] G11 cell type", CellType.STRING, 
cell.getCellType());
         assertEquals("[String] G11 cell value", "World", 
cell.getStringCellValue());
         
         // Int
         col++;
         cell = CellUtil.getCell(destRow1, col);
-        assertEquals("[Int] H10 cell type", CellType.NUMERIC, 
cell.getCellTypeEnum());
+        assertEquals("[Int] H10 cell type", CellType.NUMERIC, 
cell.getCellType());
         assertEquals("[Int] H10 cell value", 15, (int) 
cell.getNumericCellValue());
         
         cell = CellUtil.getCell(destRow2, col);
-        assertEquals("[Int] H11 cell type", CellType.NUMERIC, 
cell.getCellTypeEnum());
+        assertEquals("[Int] H11 cell type", CellType.NUMERIC, 
cell.getCellType());
         assertEquals("[Int] H11 cell value", 42, (int) 
cell.getNumericCellValue());
         
         // Float
         col++;
         cell = CellUtil.getCell(destRow1, col);
-        assertEquals("[Float] I10 cell type", CellType.NUMERIC, 
cell.getCellTypeEnum());
+        assertEquals("[Float] I10 cell type", CellType.NUMERIC, 
cell.getCellType());
         assertEquals("[Float] I10 cell value", 12.5, 
cell.getNumericCellValue(), FLOAT_PRECISION);
         
         cell = CellUtil.getCell(destRow2, col);
-        assertEquals("[Float] I11 cell type", CellType.NUMERIC, 
cell.getCellTypeEnum());
+        assertEquals("[Float] I11 cell type", CellType.NUMERIC, 
cell.getCellType());
         assertEquals("[Float] I11 cell value", 5.5, 
cell.getNumericCellValue(), FLOAT_PRECISION);
         
         // Cell Formula
         col++;
         cell = CellUtil.getCell(destRow1, col);
-        assertEquals("[Cell Formula] J10 cell type", CellType.FORMULA, 
cell.getCellTypeEnum());
+        assertEquals("[Cell Formula] J10 cell type", CellType.FORMULA, 
cell.getCellType());
         assertEquals("[Cell Formula] J10 cell formula", "5+2", 
cell.getCellFormula());
         
         cell = CellUtil.getCell(destRow2, col);
-        assertEquals("[Cell Formula] J11 cell type", CellType.FORMULA, 
cell.getCellTypeEnum());
+        assertEquals("[Cell Formula] J11 cell type", CellType.FORMULA, 
cell.getCellType());
         assertEquals("[Cell Formula] J11 cell formula", "6+18", 
cell.getCellFormula());
 
         // Cell Formula with Reference
@@ -1708,25 +1708,25 @@ public final class TestXSSFSheet extends
         // Formula row references should be adjusted by destRowNum-srcRowNum
         cell = CellUtil.getCell(destRow1, col);
         assertEquals("[Cell Formula with Reference] K10 cell type",
-                CellType.FORMULA, cell.getCellTypeEnum());
+                CellType.FORMULA, cell.getCellType());
         assertEquals("[Cell Formula with Reference] K10 cell formula",
                 "J10+H$2", cell.getCellFormula());
         
         cell = CellUtil.getCell(destRow2, col);
-        assertEquals("[Cell Formula with Reference] K11 cell type", 
CellType.FORMULA, cell.getCellTypeEnum());
+        assertEquals("[Cell Formula with Reference] K11 cell type", 
CellType.FORMULA, cell.getCellType());
         assertEquals("[Cell Formula with Reference] K11 cell formula", 
"J11+H$2", cell.getCellFormula());
         
         // Cell Formula with Reference spanning multiple rows
         col++;
         cell = CellUtil.getCell(destRow1, col);
         assertEquals("[Cell Formula with Reference spanning multiple rows] L10 
cell type",
-                CellType.FORMULA, cell.getCellTypeEnum());
+                CellType.FORMULA, cell.getCellType());
         assertEquals("[Cell Formula with Reference spanning multiple rows] L10 
cell formula",
                 "G10&\" \"&G11", cell.getCellFormula());
         
         cell = CellUtil.getCell(destRow2, col);
         assertEquals("[Cell Formula with Reference spanning multiple rows] L11 
cell type",
-                CellType.FORMULA, cell.getCellTypeEnum());
+                CellType.FORMULA, cell.getCellType());
         assertEquals("[Cell Formula with Reference spanning multiple rows] L11 
cell formula",
                 "G11&\" \"&G12", cell.getCellFormula());
         
@@ -1734,13 +1734,13 @@ public final class TestXSSFSheet extends
         col++;
         cell = CellUtil.getCell(destRow1, col);
         assertEquals("[Cell Formula with Area Reference] M10 cell type",
-                CellType.FORMULA, cell.getCellTypeEnum());
+                CellType.FORMULA, cell.getCellType());
         assertEquals("[Cell Formula with Area Reference] M10 cell formula",
                 "SUM(H10:I11)", cell.getCellFormula());
         
         cell = CellUtil.getCell(destRow2, col);
         assertEquals("[Cell Formula with Area Reference] M11 cell type",
-                CellType.FORMULA, cell.getCellTypeEnum());
+                CellType.FORMULA, cell.getCellType());
         assertEquals("[Cell Formula with Area Reference] M11 cell formula",
                 "SUM($H$3:I10)", cell.getCellFormula()); //Also acceptable: 
SUM($H10:I$3), but this AreaReference isn't in ascending order
         
@@ -1750,19 +1750,19 @@ public final class TestXSSFSheet extends
         // System.out.println("Array formulas currently unsupported");
     /*
         // FIXME: Array Formula set with Sheet.setArrayFormula() instead of 
cell.setFormula()
-        assertEquals("[Array Formula] N10 cell type", CellType.FORMULA, 
cell.getCellTypeEnum());
+        assertEquals("[Array Formula] N10 cell type", CellType.FORMULA, 
cell.getCellType());
         assertEquals("[Array Formula] N10 cell formula", 
"{SUM(H10:J10*{1,2,3})}", cell.getCellFormula());
         
         cell = CellUtil.getCell(destRow2, col);
         // FIXME: Array Formula set with Sheet.setArrayFormula() instead of 
cell.setFormula() 
-        assertEquals("[Array Formula] N11 cell type", CellType.FORMULA, 
cell.getCellTypeEnum());
+        assertEquals("[Array Formula] N11 cell type", CellType.FORMULA, 
cell.getCellType());
         assertEquals("[Array Formula] N11 cell formula", 
"{SUM(H11:J11*{1,2,3})}", cell.getCellFormula());
      */
         
         // Data Format
         col++;
         cell = CellUtil.getCell(destRow2, col);
-        assertEquals("[Data Format] O10 cell type", CellType.NUMERIC, 
cell.getCellTypeEnum());
+        assertEquals("[Data Format] O10 cell type", CellType.NUMERIC, 
cell.getCellType());
         assertEquals("[Data Format] O10 cell value", 100.20, 
cell.getNumericCellValue(), FLOAT_PRECISION);
         final String moneyFormat = "\"$\"#,##0.00_);[Red]\\(\"$\"#,##0.00\\)";
         assertEquals("[Data Format] O10 cell data format", moneyFormat, 
cell.getCellStyle().getDataFormatString());

Modified: 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFSheetShiftRows.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFSheetShiftRows.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFSheetShiftRows.java
 (original)
+++ 
poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFSheetShiftRows.java
 Mon Sep 18 16:31:55 2017
@@ -113,7 +113,7 @@ public final class TestXSSFSheetShiftRow
         }
         Cell readCell = readRow.getCell(0);
         //noinspection deprecation
-        if(readCell.getCellTypeEnum() == CellType.NUMERIC) {
+        if(readCell.getCellType() == CellType.NUMERIC) {
             assertEquals(expect, 
Double.toString(readCell.getNumericCellValue()));
         } else {
             assertEquals(expect, readCell.getStringCellValue());
@@ -413,7 +413,7 @@ public final class TestXSSFSheetShiftRow
         assertNotNull(row);
         Cell cell = row.getCell(cellAddress.getColumn());
         assertNotNull(cell);
-        assertEquals(CellType.FORMULA, cell.getCellTypeEnum());
+        assertEquals(CellType.FORMULA, cell.getCellType());
         return cell.getCellFormula();
     }
 

Modified: 
poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/model/TestHyperlink.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/model/TestHyperlink.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/model/TestHyperlink.java 
(original)
+++ 
poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/model/TestHyperlink.java 
Mon Sep 18 16:31:55 2017
@@ -129,31 +129,31 @@ public final class TestHyperlink {
         hl1 = 
tb1.getTextParagraphs().get(0).getTextRuns().get(0).getHyperlink();
         assertNotNull(hl1);
         assertEquals("d...@poi.apache.org", hl1.getLabel());
-        assertEquals(HyperlinkType.EMAIL, hl1.getTypeEnum());
+        assertEquals(HyperlinkType.EMAIL, hl1.getType());
 
         HSLFTextBox tb2 = (HSLFTextBox)slides.get(1).getShapes().get(0);
         hl2 = 
tb2.getTextParagraphs().get(0).getTextRuns().get(0).getHyperlink();
         assertNotNull(hl2);
         assertEquals(InteractiveInfoAtom.LINK_LastSlide, 
hl2.getInfo().getInteractiveInfoAtom().getHyperlinkType());
-        assertEquals(HyperlinkType.DOCUMENT, hl2.getTypeEnum());
+        assertEquals(HyperlinkType.DOCUMENT, hl2.getType());
 
         HSLFTextBox tb3 = (HSLFTextBox)slides.get(2).getShapes().get(0);
         hl3 = 
tb3.getTextParagraphs().get(0).getTextRuns().get(1).getHyperlink();
         assertNotNull(hl3);
         assertEquals(ppt2.getSlides().get(0)._getSheetNumber(), 
Integer.parseInt(hl3.getAddress().split(",")[0]));
-        assertEquals(HyperlinkType.DOCUMENT, hl3.getTypeEnum());
+        assertEquals(HyperlinkType.DOCUMENT, hl3.getType());
 
         HSLFTextBox tb4 = (HSLFTextBox)slides.get(3).getShapes().get(0);
         hl4 = 
tb4.getTextParagraphs().get(0).getTextRuns().get(0).getHyperlink();
         assertNotNull(hl4);
         assertEquals("http://poi.apache.org";, hl4.getLabel());
-        assertEquals(HyperlinkType.URL, hl4.getTypeEnum());
+        assertEquals(HyperlinkType.URL, hl4.getType());
 
         tb5 = (HSLFTextBox)slides.get(4).getShapes().get(0);
         hl5 = tb5.getHyperlink();
         assertNotNull(hl5);
         assertEquals(InteractiveInfoAtom.LINK_FirstSlide, 
hl5.getInfo().getInteractiveInfoAtom().getHyperlinkType());
-        assertEquals(HyperlinkType.DOCUMENT, hl5.getTypeEnum());
+        assertEquals(HyperlinkType.DOCUMENT, hl5.getType());
         
         ppt2.close();
     }

Modified: 
poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/usermodel/TestBugs.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/usermodel/TestBugs.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/usermodel/TestBugs.java 
(original)
+++ 
poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/usermodel/TestBugs.java 
Mon Sep 18 16:31:55 2017
@@ -870,7 +870,7 @@ public final class TestBugs {
         assertEquals(hlRun.getId(), hlShape.getId());
         assertEquals(hlRun.getAddress(), hlShape.getAddress());
         assertEquals(hlRun.getLabel(), hlShape.getLabel());
-        assertEquals(hlRun.getTypeEnum(), hlShape.getTypeEnum());
+        assertEquals(hlRun.getType(), hlShape.getType());
         assertEquals(hlRun.getStartIndex(), hlShape.getStartIndex());
         assertEquals(hlRun.getEndIndex(), hlShape.getEndIndex());
 

Modified: 
poi/trunk/src/testcases/org/apache/poi/hssf/model/TestFormulaParserEval.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/model/TestFormulaParserEval.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/testcases/org/apache/poi/hssf/model/TestFormulaParserEval.java 
(original)
+++ 
poi/trunk/src/testcases/org/apache/poi/hssf/model/TestFormulaParserEval.java 
Mon Sep 18 16:31:55 2017
@@ -99,7 +99,7 @@ public final class TestFormulaParserEval
                        }
                        throw e;
                }
-               assertEquals(CellType.NUMERIC, result.getCellTypeEnum());
+               assertEquals(CellType.NUMERIC, result.getCellType());
                assertEquals(42.0, result.getNumberValue(), 0.0);
        }
 }

Modified: poi/trunk/src/testcases/org/apache/poi/hssf/model/TestRVA.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/model/TestRVA.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/hssf/model/TestRVA.java (original)
+++ poi/trunk/src/testcases/org/apache/poi/hssf/model/TestRVA.java Mon Sep 18 
16:31:55 2017
@@ -80,7 +80,7 @@ public final class TestRVA {
                 break;
             }
             HSSFCell cell = row.getCell(0);
-            if (cell == null || cell.getCellTypeEnum() == CellType.BLANK) {
+            if (cell == null || cell.getCellType() == CellType.BLANK) {
                 break;
             }
 

Modified: 
poi/trunk/src/testcases/org/apache/poi/hssf/record/TestSharedFormulaRecord.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/record/TestSharedFormulaRecord.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/testcases/org/apache/poi/hssf/record/TestSharedFormulaRecord.java 
(original)
+++ 
poi/trunk/src/testcases/org/apache/poi/hssf/record/TestSharedFormulaRecord.java 
Mon Sep 18 16:31:55 2017
@@ -228,7 +228,7 @@ public final class TestSharedFormulaReco
     private static void confirmCellEvaluation(HSSFWorkbook wb, HSSFCell cell, 
double expectedValue) {
         HSSFFormulaEvaluator fe = new HSSFFormulaEvaluator(wb);
         CellValue cv = fe.evaluate(cell);
-        assertEquals(CellType.NUMERIC, cv.getCellTypeEnum());
+        assertEquals(CellType.NUMERIC, cv.getCellType());
         assertEquals(expectedValue, cv.getNumberValue(), 0.0);
     }
 

Modified: 
poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestBug42464.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestBug42464.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestBug42464.java 
(original)
+++ poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestBug42464.java Mon 
Sep 18 16:31:55 2017
@@ -68,7 +68,7 @@ public final class TestBug42464 {
                Iterator<Cell> it = row.cellIterator();
                while(it.hasNext()) {
                        HSSFCell cell = (HSSFCell)it.next();
-                       if(cell.getCellTypeEnum() != CellType.FORMULA) {
+                       if(cell.getCellType() != CellType.FORMULA) {
                            continue;
                        }
                        FormulaRecordAggregate record = 
(FormulaRecordAggregate) cell.getCellValueRecord();

Modified: 
poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestExternalReferenceChange.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestExternalReferenceChange.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestExternalReferenceChange.java
 (original)
+++ 
poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestExternalReferenceChange.java
 Mon Sep 18 16:31:55 2017
@@ -51,7 +51,7 @@ public class TestExternalReferenceChange
                HSSFSheet lSheet = mainWorkbook.getSheetAt(0);
                HSSFCell lA1Cell = lSheet.getRow(0).getCell(0);
                
-               assertEquals(CellType.FORMULA, lA1Cell.getCellTypeEnum());
+               assertEquals(CellType.FORMULA, lA1Cell.getCellType());
                
                HSSFFormulaEvaluator lMainWorkbookEvaluator = new 
HSSFFormulaEvaluator(mainWorkbook);
                HSSFFormulaEvaluator lSourceEvaluator = new 
HSSFFormulaEvaluator(sourceWorkbook);

Modified: 
poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFDataFormatter.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFDataFormatter.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFDataFormatter.java
 (original)
+++ 
poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFDataFormatter.java
 Mon Sep 18 16:31:55 2017
@@ -384,7 +384,7 @@ public final class TestHSSFDataFormatter
         HSSFRow row = sheet.getRow(0);
         HSSFCell cellA1 = row.getCell(0);
 
-        assertEquals(CellType.NUMERIC, cellA1.getCellTypeEnum());
+        assertEquals(CellType.NUMERIC, cellA1.getCellType());
         assertEquals(2345.0, cellA1.getNumericCellValue(), 0.0001);
         assertEquals("@", cellA1.getCellStyle().getDataFormatString());
 

Modified: 
poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestWorkbook.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestWorkbook.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestWorkbook.java 
(original)
+++ poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestWorkbook.java Mon 
Sep 18 16:31:55 2017
@@ -392,7 +392,7 @@ public final class TestWorkbook {
         HSSFSheet    s  = wb.getSheetAt(0);
         HSSFCell     c  = s.getRow(0).getCell(0);
 
-        assertEquals(CellType.NUMERIC, c.getCellTypeEnum());
+        assertEquals(CellType.NUMERIC, c.getCellType());
         
         wb.close();
     }

Modified: poi/trunk/src/testcases/org/apache/poi/ss/formula/atp/TestIfError.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/atp/TestIfError.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/ss/formula/atp/TestIfError.java 
(original)
+++ poi/trunk/src/testcases/org/apache/poi/ss/formula/atp/TestIfError.java Mon 
Sep 18 16:31:55 2017
@@ -78,18 +78,18 @@ public class TestIfError extends TestCas
         FormulaEvaluator evaluator = 
wb.getCreationHelper().createFormulaEvaluator();
 
         assertEquals("Checks that the cell is numeric",
-                       CellType.NUMERIC, 
evaluator.evaluate(cell1).getCellTypeEnum());
+                       CellType.NUMERIC, 
evaluator.evaluate(cell1).getCellType());
         assertEquals("Divides 210 by 35 and returns 6.0",
                 6.0, evaluator.evaluate(cell1).getNumberValue(), accuracy);
         
         
         assertEquals("Checks that the cell is numeric",
-                       CellType.STRING, 
evaluator.evaluate(cell2).getCellTypeEnum());
+                       CellType.STRING, 
evaluator.evaluate(cell2).getCellType());
         assertEquals("Rounds -10 to a nearest multiple of -3 (-9)",
                 "Error in calculation", 
evaluator.evaluate(cell2).getStringValue());
         
         assertEquals("Check that C1 returns string", 
-                       CellType.STRING, 
evaluator.evaluate(cell3).getCellTypeEnum());
+                       CellType.STRING, 
evaluator.evaluate(cell3).getCellType());
         assertEquals("Check that C1 returns string \"error\"", 
                        "error", evaluator.evaluate(cell3).getStringValue());
     }

Modified: 
poi/trunk/src/testcases/org/apache/poi/ss/formula/atp/TestYearFracCalculatorFromSpreadsheet.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/atp/TestYearFracCalculatorFromSpreadsheet.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/testcases/org/apache/poi/ss/formula/atp/TestYearFracCalculatorFromSpreadsheet.java
 (original)
+++ 
poi/trunk/src/testcases/org/apache/poi/ss/formula/atp/TestYearFracCalculatorFromSpreadsheet.java
 Mon Sep 18 16:31:55 2017
@@ -63,7 +63,7 @@ public final class TestYearFracCalculato
                        HSSFRow row = (HSSFRow) rowIterator.next();
                        
                        HSSFCell cell = row.getCell(SS.YEARFRAC_FORMULA_COLUMN);
-                       if (cell == null || cell.getCellTypeEnum() != 
CellType.FORMULA) {
+                       if (cell == null || cell.getCellType() != 
CellType.FORMULA) {
                                continue;
                        }
             processRow(row, cell, formulaEvaluator);

Modified: 
poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestFormulaBugs.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestFormulaBugs.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestFormulaBugs.java 
(original)
+++ poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestFormulaBugs.java 
Mon Sep 18 16:31:55 2017
@@ -58,7 +58,7 @@ public final class TestFormulaBugs {
                FormulaEvaluator fe = 
wb.getCreationHelper().createFormulaEvaluator();
                CellValue cv = fe.evaluate(cell);
 
-               assertEquals(CellType.NUMERIC, cv.getCellTypeEnum());
+               assertEquals(CellType.NUMERIC, cv.getCellType());
                assertEquals(3.0, cv.getNumberValue(), 0.0);
                
                wb.close();
@@ -106,11 +106,11 @@ public final class TestFormulaBugs {
                FormulaEvaluator fe = 
wb.getCreationHelper().createFormulaEvaluator();
                CellValue cv;
                cv = fe.evaluate(cell);
-               assertEquals(CellType.NUMERIC, cv.getCellTypeEnum());
+               assertEquals(CellType.NUMERIC, cv.getCellType());
                assertEquals(1.0, cv.getNumberValue(), 0.0);
                
                cv = fe.evaluate(row.getCell(1));
-               assertEquals(CellType.BOOLEAN, cv.getCellTypeEnum());
+               assertEquals(CellType.BOOLEAN, cv.getCellType());
                assertEquals(true, cv.getBooleanValue());
                
                wb.close();
@@ -160,7 +160,7 @@ public final class TestFormulaBugs {
                FormulaEvaluator fe = 
wb.getCreationHelper().createFormulaEvaluator();
                CellValue cv = fe.evaluate(cell);
 
-               assertEquals(CellType.NUMERIC, cv.getCellTypeEnum());
+               assertEquals(CellType.NUMERIC, cv.getCellType());
                assertEquals(expectedResult, cv.getNumberValue(), 0.0);
 
                wb.close();

Modified: 
poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestPercentEval.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestPercentEval.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestPercentEval.java 
(original)
+++ poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestPercentEval.java 
Mon Sep 18 16:31:55 2017
@@ -78,7 +78,7 @@ public final class TestPercentEval exten
                        // else some other unexpected error
                        throw e;
                }
-               assertEquals(CellType.NUMERIC, cv.getCellTypeEnum());
+               assertEquals(CellType.NUMERIC, cv.getCellType());
                assertEquals(0.5, cv.getNumberValue(), 0.0);
        }
 }

Modified: 
poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestAddress.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestAddress.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestAddress.java 
(original)
+++ 
poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestAddress.java 
Mon Sep 18 16:31:55 2017
@@ -73,7 +73,7 @@ public final class TestAddress extends T
         cell.setCellFormula(formulaText);
         fe.notifyUpdateCell(cell);
         CellValue result = fe.evaluate(cell);
-        assertEquals(result.getCellTypeEnum(), CellType.STRING);
+        assertEquals(result.getCellType(), CellType.STRING);
         assertEquals(expectedResult, result.getStringValue());
     }
 }

Modified: 
poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestCalendarFieldFunction.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestCalendarFieldFunction.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestCalendarFieldFunction.java
 (original)
+++ 
poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestCalendarFieldFunction.java
 Mon Sep 18 16:31:55 2017
@@ -104,7 +104,7 @@ public final class TestCalendarFieldFunc
         cell11.setCellFormula(formulaText);
         evaluator.clearAllCachedResultValues();
         CellValue cv = evaluator.evaluate(cell11);
-        if (cv.getCellTypeEnum() != CellType.NUMERIC) {
+        if (cv.getCellType() != CellType.NUMERIC) {
             throw new AssertionFailedError("Wrong result type: " + 
cv.formatAsString());
         }
         double actualValue = cv.getNumberValue();

Modified: 
poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestClean.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestClean.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestClean.java 
(original)
+++ poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestClean.java 
Mon Sep 18 16:31:55 2017
@@ -60,7 +60,7 @@ public final class TestClean extends Tes
         cell.setCellFormula(formulaText);
         fe.notifyUpdateCell(cell);
         CellValue result = fe.evaluate(cell);
-        assertEquals(result.getCellTypeEnum(), CellType.STRING);
+        assertEquals(result.getCellType(), CellType.STRING);
         assertEquals(expectedResult, result.getStringValue());
     }
 }

Modified: 
poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestIrr.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestIrr.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestIrr.java 
(original)
+++ poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestIrr.java 
Mon Sep 18 16:31:55 2017
@@ -128,7 +128,7 @@ public final class TestIrr extends TestC
     private static void assertFormulaResult(CellValue cv, HSSFCell cell){
         double actualValue = cv.getNumberValue();
         double expectedValue = cell.getNumericCellValue(); // cached formula 
result calculated by Excel
-        assertEquals("Invalid formula result: " + cv, CellType.NUMERIC, 
cv.getCellTypeEnum());
+        assertEquals("Invalid formula result: " + cv, CellType.NUMERIC, 
cv.getCellType());
         assertEquals(expectedValue, actualValue, 1E-4); // should agree within 
0.01%
     }
 }

Modified: 
poi/trunk/src/testcases/org/apache/poi/ss/usermodel/BaseTestSheetShiftRows.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/usermodel/BaseTestSheetShiftRows.java?rev=1808741&r1=1808740&r2=1808741&view=diff
==============================================================================
--- 
poi/trunk/src/testcases/org/apache/poi/ss/usermodel/BaseTestSheetShiftRows.java 
(original)
+++ 
poi/trunk/src/testcases/org/apache/poi/ss/usermodel/BaseTestSheetShiftRows.java 
Mon Sep 18 16:31:55 2017
@@ -750,7 +750,7 @@ public abstract class BaseTestSheetShift
     private void verifyHyperlink(Cell cell, HyperlinkType linkType, String 
ref) {
         assertTrue(cellHasHyperlink(cell));
         Hyperlink link = cell.getHyperlink();
-        assertEquals(linkType, link.getTypeEnum());
+        assertEquals(linkType, link.getType());
         assertEquals(ref, link.getAddress());
     }
     



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

Reply via email to