public enum ZipState extends Enum<ZipState>
ZipState provides flags for the encryption and decryption of zip files.| Enum Constant and Description |
|---|
COMPRESSED_SIZE
The COMPRESSE d_ size.
|
DATA
The DATA.
|
EF_LENGTH
The E f_ length.
|
FLAGS
The FLAGS.
|
FN_LENGTH
The F n_ length.
|
HEADER
The HEADER.
|
SIGNATURE
The SIGNATURE.
|
TAIL
The TAIL.
|
| Modifier and Type | Method and Description |
|---|---|
static ZipState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ZipState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZipState COMPRESSED_SIZE
public static final ZipState DATA
public static final ZipState EF_LENGTH
public static final ZipState FLAGS
public static final ZipState FN_LENGTH
public static final ZipState HEADER
public static final ZipState SIGNATURE
public static final ZipState TAIL
public static ZipState[] values()
for (ZipState c : ZipState.values()) System.out.println(c);
public static ZipState 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–2018 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.