public static enum AbstractFormat.Compression extends Enum<AbstractFormat.Compression>
| Enum Constant and Description |
|---|
GZIP |
UNCOMPRESSED |
ZIP |
| Modifier and Type | Method and Description |
|---|---|
static AbstractFormat.Compression |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractFormat.Compression[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractFormat.Compression UNCOMPRESSED
public static final AbstractFormat.Compression ZIP
public static final AbstractFormat.Compression GZIP
public static AbstractFormat.Compression[] values()
for (AbstractFormat.Compression c : AbstractFormat.Compression.values()) System.out.println(c);
public static AbstractFormat.Compression valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015 OpenEstate. All rights reserved.