public final class ListParameters
extends java.lang.Object
HDF5Archiver.list(String, ListParameters)
.Modifier and Type | Class and Description |
---|---|
static class |
ListParameters.ListParametersBuilder
A class for constructing a new list parameters object.
|
Modifier and Type | Field and Description |
---|---|
static ListParameters |
DEFAULT
The default list parameters:
recursive
does not test the integrity of the archive
does not suppress directory entries
exclude the top-level directory
reads symbolic link targets
does not resolve symbolic links
does not follow symbolic links
|
static ListParameters |
TEST
The list parameters for testing the archive integrity:
recursive
tests the integrity of the archive
does not suppress directory entries
includes the top-level directory
reads symbolic link targets
does not resolve symbolic links
does not follow symbolic links
|
Modifier and Type | Method and Description |
---|---|
static ListParameters.ListParametersBuilder |
build()
Starts building new list parameters.
|
boolean |
isFollowSymbolicLinks()
Returns if directories resolved from symbolic links should be traversed.
|
boolean |
isIncludeTopLevelDirectoryEntry()
Returns if the top-level directory entry should be listed as well.
|
boolean |
isReadLinkTargets()
Returns if symbolic link targets should be read.
|
boolean |
isRecursive()
Returns if recursive listing is enabled, i.e.
|
boolean |
isResolveSymbolicLinks()
Returns if symbolic links should be resolved.
|
boolean |
isSuppressDirectoryEntries()
Returns if directory entries should be suppressed from being listed.
|
boolean |
isTestArchive()
Returns if the archive should be tested for integrity.
|
public static final ListParameters DEFAULT
public static final ListParameters TEST
public static ListParameters.ListParametersBuilder build()
ListParameters.ListParametersBuilder
.public boolean isRecursive()
public boolean isReadLinkTargets()
public boolean isTestArchive()
public boolean isSuppressDirectoryEntries()
public boolean isIncludeTopLevelDirectoryEntry()
public boolean isResolveSymbolicLinks()
public boolean isFollowSymbolicLinks()