TarFormat
Contents
[
Hide
]Inheritance: java.lang.Object, java.lang.Enum
public enum TarFormat extends Enum<TarFormat>
Enumeration with supported formats of TarArchive.
Fields
Field | Description |
---|---|
Gnu | GNU tar is based on the early draft of POSIX.1. |
Pax | Format defined in POSIX.1-2001 standard. |
UsTar | Format extends the header block from the v7 format. |
Methods
Method | Description |
---|---|
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:
Parameter | Type | Description |
---|---|---|
name | java.lang.String |
Returns: TarFormat
values()
public static TarFormat[] values()
Returns: com.aspose.zip.TarFormat[]