public static enum ClassLoaderFile.Kind extends Enum<ClassLoaderFile.Kind>
| Enum Constant and Description | 
|---|
| ADDEDThe file has been added since the original JAR was created. | 
| DELETEDThe file has been deleted since the original JAR was created. | 
| MODIFIEDThe 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 nullCopyright © 2019 Pivotal Software, Inc.. All rights reserved.