org.apache.poi.ss.usermodel.AutoFilter Java Examples
The following examples show how to use
org.apache.poi.ss.usermodel.AutoFilter.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: StreamingSheet.java From data-prep with Apache License 2.0 | 4 votes |
/** * Not supported */ @Override public AutoFilter setAutoFilter(CellRangeAddress range) { throw new UnsupportedOperationException(); }
Example #2
Source File: FilteredSheet.java From birt with Eclipse Public License 1.0 | 4 votes |
public AutoFilter setAutoFilter(CellRangeAddress range) { return sheet.setAutoFilter(range); }
Example #3
Source File: StreamingSheet.java From excel-streaming-reader with Apache License 2.0 | 4 votes |
/** * Not supported */ @Override public AutoFilter setAutoFilter(CellRangeAddress range) { throw new UnsupportedOperationException(); }