XzCheckType

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

public enum XzCheckType extends Enum<XzCheckType>

The enumeration defines checksum calculation approach for xz archive.

Fields

FieldDescription
Crc32Checksum will be calculated using CRC32 algorithm.
Crc64Checksum will be calculated using CRC64 algorithm.
NoneChecksum will not be calculated.

Methods

MethodDescription
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:

ParameterTypeDescription
namejava.lang.String

Returns: XzCheckType

values()

public static XzCheckType[] values()

Returns: com.aspose.zip.XzCheckType[]