Uses of Class
org.anchoranalysis.io.input.file.NamedFile
| Package | Description |
|---|---|
| org.anchoranalysis.io.input |
Classes relating to creating inputs for an experiment / task.
|
| org.anchoranalysis.io.input.bean.namer |
Beans to derive names (compact unique identifiers) from files.
|
| org.anchoranalysis.io.input.file |
Non-bean classes that relate to using files during inputting.
|
-
Uses of NamedFile in org.anchoranalysis.io.input
Methods in org.anchoranalysis.io.input that return NamedFile Modifier and Type Method Description default NamedFileInputFromManager. asFile()Expresses the input as a file with a name (the unique identifier).Methods in org.anchoranalysis.io.input that return types with arguments of type NamedFile Modifier and Type Method Description Collection<NamedFile>InputsWithDirectory. findAllNonInputFiles()Find all files in the input directory are not used as inputs. -
Uses of NamedFile in org.anchoranalysis.io.input.bean.namer
Methods in org.anchoranalysis.io.input.bean.namer that return NamedFile Modifier and Type Method Description NamedFileFileNamer. deriveName(File file, FileNamerContext context)A name for a file.Methods in org.anchoranalysis.io.input.bean.namer that return types with arguments of type NamedFile Modifier and Type Method Description abstract List<NamedFile>FileNamer. deriveName(List<File> files, FileNamerContext context)Derives a list of names (associated with each file) for some files.List<NamedFile>FileNamerIndependent. deriveName(List<File> files, FileNamerContext context)List<NamedFile>FileNamer. deriveNameUnique(List<File> files, FileNamerContext context)LikeFileNamer.deriveName(List, FileNamerContext)but checks that the final list of named-files all have unique names. -
Uses of NamedFile in org.anchoranalysis.io.input.file
Methods in org.anchoranalysis.io.input.file that return NamedFile Modifier and Type Method Description NamedFileNamedFile. mapIdentifier(BiFunction<String,File,String> function)Immutably renames the file, by assigning it a new identifier.Constructors in org.anchoranalysis.io.input.file with parameters of type NamedFile Constructor Description FileInput(NamedFile file)Creates for a single file.FileWithDirectoryInput(NamedFile file, Path directory)Create for a particular file and directory.SingleFileInputBase(NamedFile file)Creates for a particular file.