Compression instead.@Deprecated public static enum XmlIO.Read.CompressionType extends java.lang.Enum<XmlIO.Read.CompressionType>
| Enum Constant and Description |
|---|
AUTO
Deprecated.
|
BZIP2
Deprecated.
|
DEFLATE
Deprecated.
|
GZIP
Deprecated.
|
UNCOMPRESSED
Deprecated.
|
ZIP
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
matches(java.lang.String filename)
Deprecated.
|
static XmlIO.Read.CompressionType |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static XmlIO.Read.CompressionType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlIO.Read.CompressionType AUTO
Compression.AUTOpublic static final XmlIO.Read.CompressionType UNCOMPRESSED
Compression.UNCOMPRESSEDpublic static final XmlIO.Read.CompressionType GZIP
Compression.GZIPpublic static final XmlIO.Read.CompressionType BZIP2
Compression.BZIP2public static final XmlIO.Read.CompressionType ZIP
Compression.ZIPpublic static final XmlIO.Read.CompressionType DEFLATE
Compression.DEFLATEpublic static XmlIO.Read.CompressionType[] values()
for (XmlIO.Read.CompressionType c : XmlIO.Read.CompressionType.values()) System.out.println(c);
public static XmlIO.Read.CompressionType 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 boolean matches(java.lang.String filename)
Compression.matches(java.lang.String)