public class UnicodePathExtraFieldFactory extends Object implements ZipEntryExtraFieldFactory
UnicodePathExtraField
objects. They
contain the absolute path of an entity encoded in UTF-8.Modifier and Type | Field and Description |
---|---|
static UnicodePathExtraFieldFactory |
INSTANCE
Singleton instance that may be used instead of instantiating this class.
|
Constructor and Description |
---|
UnicodePathExtraFieldFactory() |
Modifier and Type | Method and Description |
---|---|
UnicodePathExtraField |
create(boolean inLocalHeader,
org.entityfs.el.AbsoluteLocation loc,
UnixEntityType entityType,
Object entryToZip,
ZipEntrySettings effectiveSettings)
Create a new
ZipEntryExtraField object based on the supplied
information about the entity to Zip. |
UnsignedShort |
getCode()
Get the code that identifies the kind of
ZipEntryExtraField
objects created by this factory in a Zip file. |
public static final UnicodePathExtraFieldFactory INSTANCE
public UnsignedShort getCode()
ZipEntryExtraFieldFactory
ZipEntryExtraField
objects created by this factory in a Zip file.getCode
in interface ZipEntryExtraFieldFactory
public UnicodePathExtraField create(boolean inLocalHeader, org.entityfs.el.AbsoluteLocation loc, UnixEntityType entityType, Object entryToZip, ZipEntrySettings effectiveSettings)
ZipEntryExtraFieldFactory
ZipEntryExtraField
object based on the supplied
information about the entity to Zip.create
in interface ZipEntryExtraFieldFactory
inLocalHeader
- Should a local header or a central directory version
of the extra field be created?loc
- The absolute location of the entry in the Zip file.entityType
- The type of entity to zip.entryToZip
- The file system entity to Zip. This may be a
ReadableFile
, a DirectoryView
,
a File
directory or an InputStream
. In
the latter case, this method cannot read any data from the stream.effectiveSettings
- The effective settings for the entry.