TarFormat

Inheritance: java.lang.Object, java.lang.Enum

public enum TarFormat extends Enum<TarFormat>

Enumeration with supported formats of TarArchive.

Fields

FieldDescription
GnuGNU tar is based on the early draft of POSIX.1.
PaxFormat defined in POSIX.1-2001 standard.
UsTarFormat extends the header block from the v7 format.

Methods

MethodDescription
valueOf(String name)
values()

Gnu

public static final TarFormat Gnu

GNU tar is based on the early draft of POSIX.1. This format is implemented as default tar format in many Linux systems.

Pax

public static final TarFormat Pax

Format defined in POSIX.1-2001 standard.

UsTar

public static final TarFormat UsTar

Format extends the header block from the v7 format. Widespread and supported in many utilities for Windows.

valueOf(String name)

public static TarFormat valueOf(String name)

Parameters:

ParameterTypeDescription
namejava.lang.String

Returns: TarFormat

values()

public static TarFormat[] values()

Returns: com.aspose.zip.TarFormat[]