All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.scudata.excel.SheetObject Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

There is a newer version: 20240823
Show newest version
package com.scudata.excel;

/**
 * Sheet object
 *
 */
public abstract class SheetObject {

	/**
	 * Whether the file in xlsx format
	 */
	protected boolean isXls;

	/**
	 * SheetInfo object
	 */
	public SheetInfo sheetInfo;

	/**
	 * Import the excel sheet and return the sequence object.
	 * 
	 * @param fields
	 *            Field names
	 * @param startRow
	 *            Start row
	 * @param endRow
	 *            End row
	 * @param bTitle
	 *            Include title line
	 * @param isCursor
	 *            Whether to return the cursor
	 * @param removeBlank
	 *            Whether to delete blank lines at the beginning and end
	 * @return
	 * @throws Exception
	 */
	public abstract Object xlsimport(String[] fields, int startRow, int endRow,
			boolean bTitle, boolean isCursor, boolean removeBlank)
			throws Exception;

	/**
	 * Close
	 */
	public abstract void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy