@Immutable public enum FsOutputOption extends Enum<FsOutputOption>
IOException must be thrown.FsInputOption,
FsOutputOptions| Enum Constant and Description |
|---|
APPEND
Whether or not the new entry data shall get appended to the existing
entry data rather than replacing it entirely.
|
CACHE
Whether or not the entry data read by an input socket shall get
temporarily cached for subsequent access.
|
COMPRESS
Expresses a preference to compress an entry within its archive.
|
CREATE_PARENTS
Whether or not any missing parent directory entries shall get created
automatically.
|
EXCLUSIVE
Whether or not an entry must be exclusively created.
|
STORE
Expresses a preference to store an entry uncompressed within its archive.
|
| Modifier and Type | Method and Description |
|---|---|
static FsOutputOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FsOutputOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FsOutputOption CACHE
FsController.sync(de.schlichtherle.truezip.util.BitField<de.schlichtherle.truezip.fs.FsSyncOption>) the entry data to the backing storage
(e.g. a parent file system) while some client is still busy on reading
or writing the cached entry data.public static final FsOutputOption CREATE_PARENTS
public static final FsOutputOption APPEND
public static final FsOutputOption EXCLUSIVE
public static final FsOutputOption STORE
public static final FsOutputOption COMPRESS
public static FsOutputOption[] values()
for (FsOutputOption c : FsOutputOption.values()) System.out.println(c);
public static FsOutputOption 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 nullCopyright © 2005-2011 Schlichtherle IT Services. All Rights Reserved.