Package org.apache.iceberg
Class BaseCombinedScanTask
- java.lang.Object
-
- org.apache.iceberg.BaseCombinedScanTask
-
- All Implemented Interfaces:
java.io.Serializable
,CombinedScanTask
,ScanTask
,ScanTaskGroup<FileScanTask>
public class BaseCombinedScanTask extends java.lang.Object implements CombinedScanTask
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BaseCombinedScanTask(java.util.List<FileScanTask> tasks)
BaseCombinedScanTask(FileScanTask... tasks)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<FileScanTask>
files()
Return thetasks
in this combined task.java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.iceberg.CombinedScanTask
asCombinedScanTask, tasks
-
Methods inherited from interface org.apache.iceberg.ScanTask
asDataTask, asFileScanTask, isDataTask, isFileScanTask
-
Methods inherited from interface org.apache.iceberg.ScanTaskGroup
estimatedRowsCount, filesCount, groupingKey, sizeBytes
-
-
-
-
Constructor Detail
-
BaseCombinedScanTask
public BaseCombinedScanTask(FileScanTask... tasks)
-
BaseCombinedScanTask
public BaseCombinedScanTask(java.util.List<FileScanTask> tasks)
-
-
Method Detail
-
files
public java.util.Collection<FileScanTask> files()
Description copied from interface:CombinedScanTask
Return thetasks
in this combined task.- Specified by:
files
in interfaceCombinedScanTask
- Returns:
- a Collection of FileScanTask instances.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-