public enum JarEntryType extends Enum<JarEntryType>
JarEntry types.| Enum Constant and Description |
|---|
CLASS
Java class entry.
|
FILE
File entry.
|
JAR
Jar entry.
|
JAVA
Java class source entry.
|
PACKAGE
Package entry.
|
| Modifier and Type | Method and Description |
|---|---|
Icon |
getIcon()
Returns JAR entry type icon.
|
static JarEntryType |
valueOf(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 JAR
public static final JarEntryType PACKAGE
public static final JarEntryType CLASS
public static final JarEntryType JAVA
public static final JarEntryType FILE
public static JarEntryType[] values()
for (JarEntryType c : JarEntryType.values()) System.out.println(c);
public static JarEntryType 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.