public static enum NamedInputStream.ZipFormat extends Enum<NamedInputStream.ZipFormat>
| Enum Constant and Description |
|---|
none
Plain text file without compression
|
ZIP
ZIP format compressed archive of plain text files
|
| Modifier and Type | Method and Description |
|---|---|
static NamedInputStream.ZipFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NamedInputStream.ZipFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NamedInputStream.ZipFormat none
public static final NamedInputStream.ZipFormat ZIP
public static NamedInputStream.ZipFormat[] values()
for (NamedInputStream.ZipFormat c : NamedInputStream.ZipFormat.values()) System.out.println(c);
public static NamedInputStream.ZipFormat 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 SNMP4J.com. All Rights Reserved.