POI封装之三

声明一下:代码仅仅为了一点乐趣,有些地方明知道这样写不好,但是还是懒了。

数据绑定

public interface IRowBinder<T> extends IConstants {

	public T bind(IRow row);
}


public interface IRowMarshaller<T> extends IConstants {

	public void marshall(IRow row,T t);
}


过滤

public interface ISheetFilter {

	public boolean filter(ISheet sheet);
}


public interface IRowFilter extends IConstants {
	
	public boolean filter(IRow r);
}

猜你喜欢

转载自walkon.iteye.com/blog/2317880