Uses of Interface
adams.core.io.ForwardSlashSupporter
-
Packages that use ForwardSlashSupporter Package Description adams.data.conversion adams.flow.source adams.flow.source.valuedefinition adams.flow.transformer -
-
Uses of ForwardSlashSupporter in adams.data.conversion
Classes in adams.data.conversion that implement ForwardSlashSupporter Modifier and Type Class Description class
FileToString
Turns a File object into a String.class
ReplaceFileExtension
Interprets the string as file name and replaces its extension with the provided one.class
StringToValidFileName
Turns any string into a valid file name. -
Uses of ForwardSlashSupporter in adams.flow.source
Classes in adams.flow.source that implement ForwardSlashSupporter Modifier and Type Class Description class
DirectoryLister
Returns the contents of a directory (files/dirs).class
DirectorySupplier
Supplies directories.class
FileSupplier
Supplies files.class
FileSystemSearch
Uses the specified search algorithm to perform a file system search and returns the located items.class
SelectDirectory
Pops up a directory chooser dialog, prompting the user to select a directory.class
SelectFile
Pops up a file chooser dialog, prompting the user to select one or more files. -
Uses of ForwardSlashSupporter in adams.flow.source.valuedefinition
Classes in adams.flow.source.valuedefinition that implement ForwardSlashSupporter Modifier and Type Class Description class
DefaultValueDefinition
Combines name, type and default value for a single value.class
DirectoryValueDefinition
Value definition specifically for directories.class
FileValueDefinition
Value definition specifically for files. -
Uses of ForwardSlashSupporter in adams.flow.transformer
Classes in adams.flow.transformer that implement ForwardSlashSupporter Modifier and Type Class Description class
AppendName
Appends the suffix to the file/directory being passed through.
By default, the appropriate separator (forward slash or backslash) gets inserted between the file/directory and suffix.class
DirName
Extracts the directory part of the file/directory passing through, i.e., any trailing name part gets stripped.
See also:
adams.flow.transformer.AppendName
adams.flow.transformer.PrependDir
adams.flow.transformer.RelativeDir
adams.flow.transformer.BaseName
adams.flow.transformer.FileExtension
Input/output:
- accepts:
java.lang.String
java.lang.String[]
java.io.File
java.io.File[]
- generates:
java.lang.String
java.lang.String[]
java.io.File
java.io.File[]
class
PrependDir
Prepends the prefix to the file/directory being passed through.
By default, the appropriate separator (forward slash or backslash) gets inserted between the file/directory and prefix.class
RelativeDir
Removes the prefix from the file/directory being passed through to turn them into relative ones.
See also:
adams.flow.transformer.BaseName
adams.flow.transformer.DirName
adams.flow.transformer.AppendName
adams.flow.transformer.PrependDir
adams.flow.transformer.FileExtension
Input/output:
- accepts:
java.lang.String
java.lang.String[]
java.io.File
java.io.File[]
- generates:
java.lang.String
java.lang.String[]
java.io.File
java.io.File[]
-