Sha256: 5269e2d2ee6519f6e90a2b4a70953fa764a53d73ab30731a15eee09be551a0e7
Contents?: true
Size: 813 Bytes
Versions: 2
Compression:
Stored size: 813 Bytes
Contents
package org.embulk.parser.poi_excel; public enum PoiExcelColumnValueType { /** cell value */ CELL_VALUE(true, true), /** cell formula */ CELL_FORMULA(true, true), /** cell style */ CELL_STYLE(true, false), /** cell font */ CELL_FONT(true, false), /** cell comment */ CELL_COMMENT(true, false), /** sheet name */ SHEET_NAME(false, false), /** row number (1 origin) */ ROW_NUMBER(false, false), /** column number (1 origin) */ COLUMN_NUMBER(true, false), // ; private final boolean useCell; private final boolean nextIndex; PoiExcelColumnValueType(boolean useCell, boolean nextIndex) { this.useCell = useCell; this.nextIndex = nextIndex; } public boolean useCell() { return useCell; } public boolean nextIndex() { return nextIndex; } }
Version data entries
2 entries across 2 versions & 1 rubygems