Interface RFile.InputArguments
-
- Enclosing class:
- RFile
public static interface RFile.InputArgumentsThis is an intermediate interface in a larger builder pattern. Supports setting the required input sources for reading a RFile.- Since:
- 1.8.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RFile.ScannerFSOptionsfrom(String... files)Specify RFiles to read from.RFile.ScannerOptionsfrom(RFileSource... inputs)Specify RFiles to read from.
-
-
-
Method Detail
-
from
RFile.ScannerOptions from(RFileSource... inputs)
Specify RFiles to read from. When multiple inputs are specified theScannerconstructed will present a merged view.- Parameters:
inputs- one or more RFiles to read.- Returns:
- this
-
from
RFile.ScannerFSOptions from(String... files)
Specify RFiles to read from. When multiple are specified theScannerconstructed will present a merged view.- Parameters:
files- one or more RFiles to read.- Returns:
- this
-
-