
org.jxls.common.CellRefRowPrecedenceComparator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls-jdk1.6 Show documentation
Show all versions of jxls-jdk1.6 Show documentation
Small library for Excel generation based on XLS templates
The newest version!
package org.jxls.common;
import java.util.Comparator;
/**
* Cell comparator used to order cell by rows first and then by columns
* @author Leonid Vysochyn
* Date: 2/8/12
*/
public class CellRefRowPrecedenceComparator implements Comparator{
public int compare(CellRef cellRef1, CellRef cellRef2) {
if( cellRef1 == cellRef2) return 0;
if( cellRef1 == null) return 1;
if( cellRef2 == null) return -1;
if( cellRef1.getSheetName() != null && cellRef2.getSheetName() != null ){
int sheetNameCompared = cellRef1.getSheetName().compareTo(cellRef2.getSheetName());
if( sheetNameCompared != 0 ) return sheetNameCompared;
}else{
if(cellRef1.getSheetName() != null || cellRef2.getSheetName() != null){
if( cellRef1.getSheetName() != null ) return -1;
else return 1;
}
}
if( cellRef1.getRow() < cellRef2.getRow() ) return -1;
if( cellRef1.getRow() > cellRef2.getRow() ) return 1;
if( cellRef1.getCol() < cellRef2.getCol() ) return -1;
if( cellRef1.getCol() > cellRef2.getCol() ) return 1;
return 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy