All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tukaani.xz.package-info Maven / Gradle / Ivy

Go to download

This artifact contains the same classes as ${modularized.groupId}%${modularized.artifactId}%${modularized.version} but also a module-info.class

There is a newer version: 1.21.0
Show newest version
/*
 * package-info
 *
 * Author: Lasse Collin 
 *
 * This file has been put into the public domain.
 * You can do whatever you want with this file.
 */

/**
 * XZ data compression support.
 *
 * 

Introduction

*

* This aims to be a complete implementation of XZ data compression * in pure Java. Features: *

    *
  • Full support for the .xz file format specification version 1.0.4
  • *
  • Single-threaded streamed compression and decompression
  • *
  • Single-threaded decompression with limited random access support
  • *
  • Raw streams (no .xz headers) for advanced users, including LZMA2 * with preset dictionary
  • *
*

* Threading is planned but it is unknown when it will be implemented. *

* For the latest source code, see the * home page of XZ for Java. * *

Getting started

*

* Start by reading the documentation of {@link org.tukaani.xz.XZOutputStream} * and {@link org.tukaani.xz.XZInputStream}. * If you use XZ inside another file format or protocol, * see also {@link org.tukaani.xz.SingleXZInputStream}. * *

Licensing

*

* XZ for Java has been put into the public domain, thus you can do * whatever you want with it. All the files in the package have been * written by Lasse Collin and/or Igor Pavlov. *

* This software is provided "as is", without any warranty. */ package org.tukaani.xz;





© 2015 - 2025 Weber Informatics LLC | Privacy Policy