public enum TrueVFS extends Enum<TrueVFS>
cat
, cp
, rm
, mkdir
,
rmdir
, ls
etc.).
Please note that this utility class features some optional archive drivers which provide additional safety or otherwise unavailable features. Some of these features are not normally used because of their negative performance impact and hence this utility class should not be used for a performance benchmark.
For example, the ZIP drivers used in this utility always check
the CRC-32 values provided in the ZIP file.
In addition, the SFX driver is used which allows you to browse
.exe
files if they happen to be SelF eXtracting archives (SFX).
If they are not however, some considerable amount of time is spent searching
for the Central Directory required to be present in ZIP (and hence SFX)
files.
Enum Constant and Description |
---|
CAT |
COMPACT |
CP |
EXISTS |
HELP |
ISARCHIVE |
ISDIRECTORY |
ISFILE |
LL |
LLR |
LS |
MKDIR |
MKDIRS |
MV |
RM |
RMR |
SIZE |
TOUCH |
USAGE |
VERSION |
Modifier and Type | Method and Description |
---|---|
static void |
main(String[] args) |
static TrueVFS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrueVFS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrueVFS CAT
public static final TrueVFS COMPACT
public static final TrueVFS CP
public static final TrueVFS EXISTS
public static final TrueVFS HELP
public static final TrueVFS ISARCHIVE
public static final TrueVFS ISDIRECTORY
public static final TrueVFS ISFILE
public static final TrueVFS LL
public static final TrueVFS LLR
public static final TrueVFS LS
public static final TrueVFS MKDIR
public static final TrueVFS MKDIRS
public static final TrueVFS MV
public static final TrueVFS RM
public static final TrueVFS RMR
public static final TrueVFS SIZE
public static final TrueVFS TOUCH
public static final TrueVFS USAGE
public static final TrueVFS VERSION
public static void main(String[] args)
public static TrueVFS valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static TrueVFS[] values()
for (TrueVFS c : TrueVFS.values()) System.out.println(c);
Copyright © 2005–2018 Schlichtherle IT Services. All rights reserved.