public enum Compression extends java.lang.Enum<Compression>
| Modifier and Type | Method and Description |
|---|---|
abstract java.io.InputStream |
cover(java.io.InputStream stream) |
abstract java.io.OutputStream |
cover(java.io.OutputStream stream) |
static Compression |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Compression[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Compression Plain
public static final Compression GZip
public static final Compression XZ
public static final Compression BZip2
public static Compression[] values()
for (Compression c : Compression.values()) System.out.println(c);
public static Compression valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic abstract java.io.OutputStream cover(java.io.OutputStream stream)
throws java.io.IOException
java.io.IOExceptionpublic abstract java.io.InputStream cover(java.io.InputStream stream)
throws java.io.IOException
java.io.IOException