c

fun.mactavish.sevenz4s

ExtractionEntry

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
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExtractionEntry
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. 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

  1. val CRC: Int
  2. val comment: String
  3. val compressMethod: String
  4. val creationTime: Option[Date]
  5. 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 independent extractTo 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

  6. val group: String
  7. val hostOS: String
  8. val isDir: Boolean
  9. val isEncrypted: Boolean
  10. val lastAccessTime: Option[Date]
  11. val originalSize: Long
  12. val packedSize: Long
  13. val path: String
  14. def productElementNames: Iterator[String]
    Definition Classes
    Product
  15. val user: String