de.carne.nio.compression.bzip2.Bzip2BlockSize Maven / Gradle / Ivy
/*
* Copyright (c) 2016-2018 Holger de Carne and contributors, All Rights Reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser Public License for more details.
*
* You should have received a copy of the GNU Lesser Public License
* along with this program. If not, see .
*/
package de.carne.nio.compression.bzip2;
/**
* Bzip2 block size parameter.
*/
public enum Bzip2BlockSize {
/**
* Block size 0.
*/
SIZE0,
/**
* Block size 1.
*/
SIZE1,
/**
* Block size 2.
*/
SIZE2,
/**
* Block size 3.
*/
SIZE3,
/**
* Block size 4.
*/
SIZE4,
/**
* Block size 5.
*/
SIZE5,
/**
* Block size 6.
*/
SIZE6,
/**
* Block size 7.
*/
SIZE7,
/**
* Block size 8.
*/
SIZE8,
/**
* Block size 9.
*/
SIZE9
}