Class DirectoryListingEntry
java.lang.Object
org.apache.tika.parser.chm.accessor.DirectoryListingEntry
Deprecated.
This version of the Apache Tika library is deprecated. Use your own version of Apache Tika.
The format of a directory listing entry is as follows: BYTE: length of name
BYTEs: name (UTF-8 encoded) ENCINT: content section ENCINT: offset ENCINT:
length The offset is from the beginning of the content section the file is
in, after the section has been decompressed (if appropriate). The length also
refers to length of the file in the section after decompression. There are
two kinds of file represented in the directory: user data and format related
files. The files which are format-related have names which begin with '::',
the user data files have names which begin with "/".
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.DirectoryListingEntry(int name_length, String name, ChmCommons.EntryType isCompressed, int offset, int length) Deprecated.Constructs directoryListingEntry -
Method Summary
-
Constructor Details
-
DirectoryListingEntry
public DirectoryListingEntry()Deprecated. -
DirectoryListingEntry
public DirectoryListingEntry(int name_length, String name, ChmCommons.EntryType isCompressed, int offset, int length) throws TikaException Deprecated.Constructs directoryListingEntry- Parameters:
name_length- intname- StringisCompressed- ChmCommons.EntryTypeoffset- intlength- int- Throws:
TikaException
-
-
Method Details
-
toString
Deprecated. -
getNameLength
public int getNameLength()Deprecated.Returns an entry name length- Returns:
- int
-
getName
Deprecated.Returns an entry name- Returns:
- String
-
getEntryType
Deprecated.Returns ChmCommons.EntryType (COMPRESSED or UNCOMPRESSED)- Returns:
- ChmCommons.EntryType
-
getOffset
public int getOffset()Deprecated. -
getLength
public int getLength()Deprecated.
-