org.openstreetmap.osmosis.xml.common.CompressionMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of osmosis-xml Show documentation
Show all versions of osmosis-xml Show documentation
Osmosis is a Java application and library for processing OSM data.
The newest version!
// This software is released into the Public Domain. See copying.txt for details.
package org.openstreetmap.osmosis.xml.common;
/**
* Defines the various compression methods supported by xml tasks.
*
* @author Brett Henderson
*/
public enum CompressionMethod {
/**
* Specifies that no compression be performed.
*/
None,
/**
* Specifies that GZip compression should be used.
*/
GZip,
/**
* Specifies that BZip2 compression should be used.
*/
BZip2
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy