java.lang.Object | +--java.lang.Package
Untamed:
(package private)
Package(String name,
String spectitle,
String specversion,
String specvendor,
String impltitle,
String implversion,
String implvendor,
URL sealbase)
String
getImplementationVendor()
static Package
getPackage(String name)
ClassLoader instance.
static Package[]
getPackages()
ClassLoader
instance.
String
getSpecificationTitle()
String
getSpecificationVendor()
String
getSpecificationVersion()
boolean
isCompatibleWith(String desired)
boolean
isSealed(URL url)
private static Map pkgs
private static Map urls
private static Map mans
private String pkgName
private String specTitle
private String specVersion
private String specVendor
private String implTitle
private String implVersion
private String implVendor
private URL sealBase
Package(String name, String spectitle, String specversion, String specvendor, String impltitle, String implversion, String implvendor, URL sealbase)
spectitle - the title of the specificationspecversion - the version of the specificationspecvendor - the organization that maintains the specificationimpltitle - the title of the implementationimplversion - the version of the implementationimplvendor - the organization that maintains the implementationprivate Package(String name, java.util.jar.Manifest man, URL url)
public String getName()
public String getSpecificationTitle()
public String getSpecificationVersion()
public String getSpecificationVendor()
public String getImplementationTitle()
public String getImplementationVersion()
public String getImplementationVendor()
public boolean isSealed()
public boolean isSealed(URL url)
url - the code source url
public boolean isCompatibleWith(String desired) throws NumberFormatException
Version numbers are compared by sequentially comparing corresponding components of the desired and specification strings. Each component is converted as a decimal integer and the values compared. If the specification value is greater than the desired value true is returned. If the value is less false is returned. If the values are equal the period is skipped and the next pair of components is compared.
desired - the version string of the desired version.
NumberFormatExceptionpublic static Package getPackage(String name)
ClassLoader instance.
The callers ClassLoader instance is used to find the package
instance corresponding to the named class. If the callers
ClassLoader instance is null then the set of packages loaded
by the system ClassLoader instance is searched to find the
named package. Packages have attributes for versions and specifications only if the class loader created the package instance with the appropriate attributes. Typically, those attributes are defined in the manifests that accompany the classes.
name - a package name, for example, java.lang.
public static Package[] getPackages()
ClassLoader
instance. Those packages correspond to classes loaded via or accessible by
name to that ClassLoader instance. If the caller's
ClassLoader instance is the bootstrap ClassLoader
instance, which may be represented by null in some implementations,
only packages corresponding to classes loaded by the bootstrap
ClassLoader instance will be returned.
ClassLoader
instance. An zero length array is returned if none are known.static Package getPackage(Class c)
null in some implementations, then the set of packages
loaded by the bootstrap class loader is searched to find the package.
Packages have attributes for versions and specifications only if the class loader created the package instance with the appropriate attributes. Typically those attributes are defined in the manifests that accompany the classes.
public int hashCode()
java.lang.Object#equals(java.lang.Object),
java.util.Hashtablepublic String toString()
static Package getSystemPackage(String name)
static Package[] getSystemPackages()
private static Package defineSystemPackage(String iname, String fn)
private static java.util.jar.Manifest loadManifest(String fn)
private static String getSystemPackage0(String name)
private static String[] getSystemPackages0()