Package com.aspose.zip
Class XzLZMA2FilterSettings
- java.lang.Object
-
- com.aspose.zip.XzFilterSettings
-
- com.aspose.zip.XzLZMA2FilterSettings
-
public final class XzLZMA2FilterSettings extends XzFilterSettings
Set of settings for xz LZMA2 filter.
-
-
Constructor Summary
Constructors Constructor Description XzLZMA2FilterSettings()Initializes a new instance of theXzLZMA2FilterSettings.XzLZMA2FilterSettings(long dictionarySize)Initializes a new instance of theXzLZMA2FilterSettings.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetDictionarySize()Size of dictionary are used by LZMA2 filter.
-
-
-
Constructor Detail
-
XzLZMA2FilterSettings
public XzLZMA2FilterSettings()
Initializes a new instance of the
XzLZMA2FilterSettings.- Throws:
com.aspose.ms.System.ArgumentOutOfRangeException- Dictionary size is not in valid range.
-
XzLZMA2FilterSettings
public XzLZMA2FilterSettings(long dictionarySize)
Initializes a new instance of the
XzLZMA2FilterSettings.- Parameters:
dictionarySize- size of dictionary are used by LZMA2 filter, must be between 4096 and 1073741824- Throws:
com.aspose.ms.System.ArgumentOutOfRangeException- Dictionary size is not in valid range.
-
-