public enum JarEntryType extends java.lang.Enum<JarEntryType>
| Enum Constant and Description |
|---|
classEntry
Java class entry.
|
fileEntry
File entry.
|
jarEntry
Jar entry.
|
javaEntry
Java class source entry.
|
packageEntry
Package entry.
|
| Modifier and Type | Method and Description |
|---|---|
static JarEntryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JarEntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JarEntryType jarEntry
public static final JarEntryType packageEntry
public static final JarEntryType classEntry
public static final JarEntryType javaEntry
public static final JarEntryType fileEntry
public static JarEntryType[] values()
for (JarEntryType c : JarEntryType.values()) System.out.println(c);
public static JarEntryType 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 null