public enum ZipItemType extends Enum<ZipItemType>
| Modifier and Type | Method and Description |
|---|---|
static ZipItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ZipItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZipItemType FOLDER
public static final ZipItemType FILE
public static ZipItemType[] values()
for (ZipItemType c : ZipItemType.values()) System.out.println(c);
public static ZipItemType 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 © 2020. All Rights Reserved.