com.welemski.wrench.poi.util.SheetReader Maven / Gradle / Ivy
The newest version!
/*
* The MIT License
*
* Copyright 2016 Lemuel Raganas.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.welemski.wrench.poi.util;
import com.welemski.wrench.delegate.ErrorDelegate;
import com.welemski.wrench.delegate.ObjectDelegate;
import com.welemski.wrench.poi.delegate.DidReadCellDelegate;
import com.welemski.wrench.poi.delegate.DidReadRowDelegate;
import com.welemski.wrench.poi.delegate.DidReadSheetDelegate;
import com.welemski.wrench.poi.delegate.DidReadWorkbook;
import com.welemski.wrench.poi.filter.CellFilter;
import com.welemski.wrench.poi.filter.RowFilter;
import com.welemski.wrench.poi.filter.SheetFilter;
import java.util.List;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
/**
*
* @author Lemuel Raganas
*/
public interface SheetReader {
public boolean read();
public void didBegin(ObjectDelegate delegate);
public void didEnd(ObjectDelegate delegate);
public void didError(ErrorDelegate delegate);
public void didReadWorkbook(DidReadWorkbook delegate);
public void didReadRow(DidReadRowDelegate delegate);
public void didReadCell(DidReadCellDelegate delegate);
public void didReadSheet(DidReadSheetDelegate delegate);
public void setRowFilter(RowFilter filter);
public void setCellFilter(CellFilter filter);
public void setSheetFilter(SheetFilter filter);
public Exception[] getErrors();
public Workbook getWorkbook();
public List getSheets();
public void setProperty(String forKey, Object value);
public Object getProperty(String forKey);
public List getRows();
}