public static enum ClassLoaderFile.Kind extends Enum<ClassLoaderFile.Kind>
| Enum Constant and Description | 
|---|
ADDED
The file has been added since the original JAR was created. 
 | 
DELETED
The file has been deleted since the original JAR was created. 
 | 
MODIFIED
The file has been modified since the original JAR was created. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ClassLoaderFile.Kind | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ClassLoaderFile.Kind[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ClassLoaderFile.Kind ADDED
public static final ClassLoaderFile.Kind MODIFIED
public static final ClassLoaderFile.Kind DELETED
public static ClassLoaderFile.Kind[] values()
for (ClassLoaderFile.Kind c : ClassLoaderFile.Kind.values()) System.out.println(c);
public static ClassLoaderFile.Kind 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 null