final case class ExtractionEntry(item: ISimpleInArchiveItem, passwd: String, originalSize: Long, packedSize: Long, path: String, isDir: Boolean, compressMethod: String, lastAccessTime: Option[Date] = None, creationTime: Option[Date] = None, isEncrypted: Boolean = false, user: String = "", group: String = "", hostOS: String = "", comment: String = "", CRC: Int) extends Product with Serializable
Representation for archive entry used during extraction, it contains specific properties and can extract data to given stream.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ExtractionEntry
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new ExtractionEntry(item: ISimpleInArchiveItem, passwd: String, originalSize: Long, packedSize: Long, path: String, isDir: Boolean, compressMethod: String, lastAccessTime: Option[Date] = None, creationTime: Option[Date] = None, isEncrypted: Boolean = false, user: String = "", group: String = "", hostOS: String = "", comment: String = "", CRC: Int)
Value Members
- val CRC: Int
- val comment: String
- val compressMethod: String
- val creationTime: Option[Date]
- def extractTo(dst: Either[Path, OutputStream]): Boolean
Extracts its data to the given file or
OutputStream
.Extracts its data to the given file or
OutputStream
.We won't close the
OutputStream
, you have to close it on your own.Note that it's more efficient to use extractor's
extractTo
than this entry's independentextractTo
if you intend to extract the entire archive.extractTo
can be called for multiple times.- dst
the destination for output archive entry stream
- returns
boolean indicating whether the extraction succeeded
- val group: String
- val hostOS: String
- val isDir: Boolean
- val isEncrypted: Boolean
- val lastAccessTime: Option[Date]
- val originalSize: Long
- val packedSize: Long
- val path: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val user: String