public static enum ICodeBase.Discovered extends java.lang.Enum<ICodeBase.Discovered>
Enum Constant and Description |
---|
IN_JAR_MANIFEST
Codebase was referenced in the Class-Path attribute of a Jar manifest
of another codebase.
|
IN_SYSTEM_CLASSPATH
Codebase was discovered in the system classpath.
|
NESTED
Codebase was discovered as a nested archive in another codebase.
|
SPECIFIED
Codebase 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 nullFindBugs™ is licenced under the LGPL. Copyright © 2006 University of Maryland.