ArchiveEntry

zio.compress.ArchiveEntry
See theArchiveEntry companion object
final case class ArchiveEntry[+Size <: (Option), +Underlying](name: String, uncompressedSize: Size[Long], isDirectory: Boolean, lastModified: Option[Instant], lastAccess: Option[Instant], creation: Option[Instant], underlying: Underlying)

Attributes

Companion
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def underlying[U](implicit U: ArchiveEntryToUnderlying[U]): U
def withIsDirectory(isDirectory: Boolean): ArchiveEntry[Size, Underlying]
def withLastModified(lastModified: Option[Instant]): ArchiveEntry[Size, Underlying]
def withName(name: String): ArchiveEntry[Size, Underlying]
def withUncompressedSize[S <: (Option)](uncompressedSize: S[Long]): ArchiveEntry[S, Underlying]
def withUnderlying[U](underlying: U): ArchiveEntry[Size, U]

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product