Sha256: d86248ef60c803d0309a79c8cbe08d8d15dc4a99e1fde04fba80a57e64d2f647
Contents?: true
Size: 1.99 KB
Versions: 1
Compression:
Stored size: 1.99 KB
Contents
# Copyright:: Autotelik Media Ltd # Author :: Tom Statter # Date :: July 2010 # License:: # # if(DataShift::Guards::jruby?) require 'java' require 'benchmark' require "poi-3.7-20101029.jar" module RubyPoiTranslations java_import 'org.apache.poi.poifs.filesystem.POIFSFileSystem' java_import 'org.apache.poi.hssf.usermodel.HSSFCell' java_import 'org.apache.poi.hssf.usermodel.HSSFWorkbook' java_import 'org.apache.poi.hssf.usermodel.HSSFCellStyle' java_import 'org.apache.poi.hssf.usermodel.HSSFDataFormat' java_import 'org.apache.poi.hssf.usermodel.HSSFClientAnchor' java_import 'org.apache.poi.hssf.usermodel.HSSFRichTextString' java_import 'org.apache.poi.hssf.util.HSSFColor' java_import 'java.io.ByteArrayOutputStream' java_import 'java.util.Date' java_import 'java.io.FileInputStream' java_import 'java.io.FileOutputStream' # Cell.CELL_TYPE_NUMERIC, Cell.CELL_TYPE_STRING, Cell.CELL_TYPE_FORMULA, # Cell.CELL_TYPE_BLANK, Cell.CELL_TYPE_BOOLEAN, Cell.CELL_TYPE_ERROR def cell_value(cell) case (cell.getCellType()) when HSSFCell::CELL_TYPE_FORMULA then return cell.getCellFormula() when HSSFCell::CELL_TYPE_NUMERIC then return cell.getNumericCellValue() when HSSFCell::CELL_TYPE_STRING then return cell.getStringCellValue() when HSSFCell::CELL_TYPE_BOOLEAN then return cell.getBooleanCellValue() when HSSFCell::CELL_TYPE_ERROR then return cell.getErrorCellValue() when HSSFCell::CELL_TYPE_BLANK then return "" end end # Return the suitable type for a HSSFCell from a Ruby data type def poi_cell_type(data) if(data.kind_of?(Numeric)) HSSFCell::CELL_TYPE_NUMERIC elsif(data.nil?) HSSFCell::CELL_TYPE_BLANK elsif(data.is_a?(TrueClass) || data.is_a?(FalseClass)) HSSFCell::CELL_TYPE_BOOLEAN else HSSFCell::CELL_TYPE_STRING end # HSSFCell::CELL_TYPE_FORMULA end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
datashift-0.10.0 | lib/applications/ruby_poi_translations.rb |