Uses of Interface
com.pervasive.datarush.io.PathDetails
-
Packages that use PathDetails Package Description com.pervasive.datarush.azure com.pervasive.datarush.gcp com.pervasive.datarush.io Provides classes and interfaces performing file-like I/O operations. -
-
Uses of PathDetails in com.pervasive.datarush.azure
Methods in com.pervasive.datarush.azure that return PathDetails Modifier and Type Method Description abstract PathDetails
AbstractAzureClient. getDetails(AzureFilePath path)
PathDetails
AzureClient. getDetails(AzureFilePath path)
PathDetails
AzureFileSystem. getDetails(Path path)
Methods in com.pervasive.datarush.azure that return types with arguments of type PathDetails Modifier and Type Method Description protected abstract List<PathDetails>
AbstractAzureClient. listBlobs(AzureFilePath path)
protected abstract List<PathDetails>
AbstractAzureClient. listContainers(AzureFilePath path)
List<PathDetails>
AbstractAzureClient. listDirectory(AzureFilePath path)
List<PathDetails>
AzureClient. listDirectory(AzureFilePath path)
List<PathDetails>
AzureFileSystem. listDirectory(Path path, DirectoryFilter filter)
List<PathDetails>
AzureFileSystem. matchPaths(String pattern)
-
Uses of PathDetails in com.pervasive.datarush.gcp
Methods in com.pervasive.datarush.gcp that return PathDetails Modifier and Type Method Description PathDetails
GcpFileSystem. getDetails(Path path)
Methods in com.pervasive.datarush.gcp that return types with arguments of type PathDetails Modifier and Type Method Description List<PathDetails>
GcpFileSystem. listDirectory(Path path, DirectoryFilter filter)
List<PathDetails>
GcpFileSystem. matchPaths(String pattern)
-
Uses of PathDetails in com.pervasive.datarush.io
Classes in com.pervasive.datarush.io that implement PathDetails Modifier and Type Class Description class
BasicPathDetails
Methods in com.pervasive.datarush.io that return PathDetails Modifier and Type Method Description PathDetails
FileClient. getDetails(Path path)
Returns metadata associated with the specified path.PathDetails
FileSystem. getDetails(Path path)
Returns metadata associated with the specified path.Methods in com.pervasive.datarush.io that return types with arguments of type PathDetails Modifier and Type Method Description List<PathDetails>
UnixStyleGlobbing. findMatches()
Returns paths that match defined glob pattern.List<PathDetails>
FileClient. listDirectory(Path path)
Gets the contents of the specified directory.List<PathDetails>
FileClient. listDirectory(Path path, DirectoryFilter filter)
Gets the contents of the specified directory, applying a filter.List<PathDetails>
FileSystem. listDirectory(Path path, DirectoryFilter filter)
Gets the contents of the specified directory, applying a filter.List<PathDetails>
FileClient. listMatches(String pattern)
Finds all paths matching the specified pattern.List<PathDetails>
FileSystem. matchPaths(String pattern)
Gets all paths which match the given pattern.Methods in com.pervasive.datarush.io with parameters of type PathDetails Modifier and Type Method Description boolean
DirectoryFilter. accept(PathDetails entry, FileSystem fileSystem)
Indicates whether the filter selects the given path.Method parameters in com.pervasive.datarush.io with type arguments of type PathDetails Modifier and Type Method Description static List<Path>
Paths. extractPaths(List<PathDetails> details)
Convert a list ofPathDetails
objects to a list ofPath
objects.static List<Path>
Paths. extractPaths(List<PathDetails> details, boolean includeHidden)
Convert a list ofPathDetails
objects to a list ofPath
objects.
-