声明一下:代码仅仅为了一点乐趣,有些地方明知道这样写不好,但是还是懒了。
数据绑定
过滤
数据绑定
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);
}