Java org.apache.commons.compress.archivers.sevenz SevenZArchiveEntry fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.compress.archivers.sevenz SevenZArchiveEntry fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.compress.archivers.sevenz SevenZArchiveEntry.

The text is from its open source code.

Field

booleanhasStream
booleanisDirectory
booleanisAntiItem

Constructor

Method

IterablegetContentMethods()
Gets the (compression) methods to use for entry's content - the default is LZMA2.
DategetLastModifiedDate()
Gets the last modified date.
StringgetName()
Get this entry's name.
longgetSize()
Get this entry's file size.
voidsetAccessDate(final long ntfsAccessDate)
Sets the access date using NTFS time (100 nanosecond units since 1 January 1601)
voidsetAccessDate(final Date accessDate)
Sets the access date,
voidsetContentMethods(final Iterable methods)
Sets the (compression) methods to use for entry's content - the default is LZMA2.
voidsetCreationDate(final long ntfsCreationDate)
Sets the creation date using NTFS time (100 nanosecond units since 1 January 1601)
voidsetCreationDate(final Date creationDate)
Sets the creation date,
voidsetDirectory(final boolean isDirectory)
Sets whether or not this entry represents a directory.
voidsetLastModifiedDate(final long ntfsLastModifiedDate)
Sets the last modified date using NTFS time (100 nanosecond units since 1 January 1601)
voidsetLastModifiedDate(final Date lastModifiedDate)
Sets the last modified date,
voidsetName(final String name)
Set this entry's name.
voidsetSize(final long size)
Set this entry's file size.