Package org.apache.iceberg
Interface CombinedScanTask
- All Superinterfaces:
- ScanTask,- ScanTaskGroup<FileScanTask>,- Serializable
- All Known Implementing Classes:
- BaseCombinedScanTask
A scan task made of several ranges from files.
- 
Method SummaryModifier and TypeMethodDescriptiondefault CombinedScanTaskReturns this cast toCombinedScanTaskif it is onefiles()Return thetasksin this combined task.default Collection<FileScanTask> tasks()Returns scan tasks in this group.Methods inherited from interface org.apache.iceberg.ScanTaskasDataTask, asFileScanTask, isDataTask, isFileScanTaskMethods inherited from interface org.apache.iceberg.ScanTaskGroupestimatedRowsCount, filesCount, groupingKey, sizeBytes
- 
Method Details- 
filesCollection<FileScanTask> files()Return thetasksin this combined task.- Returns:
- a Collection of FileScanTask instances.
 
- 
tasksDescription copied from interface:ScanTaskGroupReturns scan tasks in this group.- Specified by:
- tasksin interface- ScanTaskGroup<FileScanTask>
 
- 
asCombinedScanTaskDescription copied from interface:ScanTaskReturns this cast toCombinedScanTaskif it is one- Specified by:
- asCombinedScanTaskin interface- ScanTask
- Returns:
- this cast to CombinedScanTaskif it is one
 
 
-