XzCheckType
Contents
[
Hide
]Inheritance: java.lang.Object, java.lang.Enum
public enum XzCheckType extends Enum<XzCheckType>
The enumeration defines checksum calculation approach for xz archive.
Fields
Field | Description |
---|---|
Crc32 | Checksum will be calculated using CRC32 algorithm. |
Crc64 | Checksum will be calculated using CRC64 algorithm. |
None | Checksum will not be calculated. |
Methods
Method | Description |
---|---|
valueOf(String name) | |
values() |
Crc32
public static final XzCheckType Crc32
Checksum will be calculated using CRC32 algorithm.
Crc64
public static final XzCheckType Crc64
Checksum will be calculated using CRC64 algorithm.
None
public static final XzCheckType None
Checksum will not be calculated.
valueOf(String name)
public static XzCheckType valueOf(String name)
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String |
Returns: XzCheckType
values()
public static XzCheckType[] values()
Returns: com.aspose.zip.XzCheckType[]