public static enum ICodeBase.Discovered extends java.lang.Enum<ICodeBase.Discovered>
| Enum Constant and Description | 
|---|
| IN_JAR_MANIFESTCodebase was referenced in the Class-Path attribute of a Jar manifest
 of another codebase. | 
| IN_SYSTEM_CLASSPATHCodebase was discovered in the system classpath. | 
| NESTEDCodebase was discovered as a nested archive in another codebase. | 
| SPECIFIEDCodebase was explicitly specified. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ICodeBase.Discovered | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static ICodeBase.Discovered[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ICodeBase.Discovered SPECIFIED
public static final ICodeBase.Discovered NESTED
public static final ICodeBase.Discovered IN_JAR_MANIFEST
public static final ICodeBase.Discovered IN_SYSTEM_CLASSPATH
public static ICodeBase.Discovered[] values()
for (ICodeBase.Discovered c : ICodeBase.Discovered.values()) System.out.println(c);
public static ICodeBase.Discovered 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 nullSpotBugs is licensed under the LGPL.