java.lang
Class Package

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.lang.Package
All Implemented Interfaces:
AnnotatedElement sample code for java.lang.reflect.AnnotatedElement definition code for java.lang.reflect.AnnotatedElement

public class Package
extends Object sample code for java.lang.Object definition code for java.lang.Object
implements AnnotatedElement sample code for java.lang.reflect.AnnotatedElement definition code for java.lang.reflect.AnnotatedElement

Package objects contain version information about the implementation and specification of a Java package. This versioning information is retrieved and made available by the ClassLoader sample code for java.lang.ClassLoader definition code for java.lang.ClassLoader instance that loaded the class(es). Typically, it is stored in the manifest that is distributed with the classes.

The set of classes that make up the package may implement a particular specification and if so the specification title, version number, and vendor strings identify that specification. An application can ask if the package is compatible with a particular version, see the isCompatibleWith sample code for java.lang.Package.isCompatibleWith(java.lang.String) definition code for java.lang.Package.isCompatibleWith(java.lang.String) method for details.

Specification version numbers use a syntax that consists of positive decimal integers separated by periods ".", for example "2.0" or "1.2.3.4.5.6.7". This allows an extensible number to be used to represent major, minor, micro, etc. versions. The version specification is described by the following formal grammar:

SpecificationVersion:
Digits RefinedVersionopt

RefinedVersion:
. Digits
. Digits RefinedVersion

Digits:
Digit
Digits

Digit:
any character for which Character.isDigit(char) sample code for java.lang.Character.isDigit(char) definition code for java.lang.Character.isDigit(char) returns true, e.g. 0, 1, 2, ...

The implementation title, version, and vendor strings identify an implementation and are made available conveniently to enable accurate reporting of the packages involved when a problem occurs. The contents all three implementation strings are vendor specific. The implementation version strings have no specified syntax and should only be compared for equality with desired version identifiers.

Within each ClassLoader instance all classes from the same java package have the same Package object. The static methods allow a package to be found by name or the set of all packages known to the current class loader to be found.

See Also:
ClassLoader.definePackage(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.net.URL) sample code for java.lang.ClassLoader.definePackage(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.net.URL) definition code for java.lang.ClassLoader.definePackage(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.net.URL)

Method Summary
<A extends Annotation sample code for java.lang.annotation.Annotation definition code for java.lang.annotation.Annotation >
A
getAnnotation sample code for java.lang.Package.getAnnotation(java.lang.Class) definition code for java.lang.Package.getAnnotation(java.lang.Class) (Class sample code for java.lang.Class definition code for java.lang.Class <A> annotationClass)
          Returns this element's annotation for the specified type if such an annotation is present, else null.
 Annotation sample code for java.lang.annotation.Annotation definition code for java.lang.annotation.Annotation [] getAnnotations sample code for java.lang.Package.getAnnotations() definition code for java.lang.Package.getAnnotations() ()
          Returns all annotations present on this element.
 Annotation sample code for java.lang.annotation.Annotation definition code for java.lang.annotation.Annotation [] getDeclaredAnnotations sample code for java.lang.Package.getDeclaredAnnotations() definition code for java.lang.Package.getDeclaredAnnotations() ()
          Returns all annotations that are directly present on this element.
 String sample code for java.lang.String definition code for java.lang.String getImplementationTitle sample code for java.lang.Package.getImplementationTitle() definition code for java.lang.Package.getImplementationTitle() ()
          Return the title of this package.
 String sample code for java.lang.String definition code for java.lang.String getImplementationVendor sample code for java.lang.Package.getImplementationVendor() definition code for java.lang.Package.getImplementationVendor() ()
          Returns the name of the organization, vendor or company that provided this implementation.
 String sample code for java.lang.String definition code for java.lang.String getImplementationVersion sample code for java.lang.Package.getImplementationVersion() definition code for java.lang.Package.getImplementationVersion() ()
          Return the version of this implementation.
 String sample code for java.lang.String definition code for java.lang.String getName sample code for java.lang.Package.getName() definition code for java.lang.Package.getName() ()
          Return the name of this package.
static Package sample code for java.lang.Package definition code for java.lang.Package getPackage sample code for java.lang.Package.getPackage(java.lang.String) definition code for java.lang.Package.getPackage(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  name)
          Find a package by name in the callers ClassLoader instance.
static Package sample code for java.lang.Package definition code for java.lang.Package [] getPackages sample code for java.lang.Package.getPackages() definition code for java.lang.Package.getPackages() ()
          Get all the packages currently known for the caller's ClassLoader instance.
 String sample code for java.lang.String definition code for java.lang.String getSpecificationTitle sample code for java.lang.Package.getSpecificationTitle() definition code for java.lang.Package.getSpecificationTitle() ()
          Return the title of the specification that this package implements.
 String sample code for java.lang.String definition code for java.lang.String getSpecificationVendor sample code for java.lang.Package.getSpecificationVendor() definition code for java.lang.Package.getSpecificationVendor() ()
          Return the name of the organization, vendor, or company that owns and maintains the specification of the classes that implement this package.
 String sample code for java.lang.String definition code for java.lang.String getSpecificationVersion sample code for java.lang.Package.getSpecificationVersion() definition code for java.lang.Package.getSpecificationVersion() ()
          Returns the version number of the specification that this package implements.
 int hashCode sample code for java.lang.Package.hashCode() definition code for java.lang.Package.hashCode() ()
          Return the hash code computed from the package name.
 boolean isAnnotationPresent sample code for java.lang.Package.isAnnotationPresent(java.lang.Class) definition code for java.lang.Package.isAnnotationPresent(java.lang.Class) (Class sample code for java.lang.Class definition code for java.lang.Class <? extends Annotation sample code for java.lang.annotation.Annotation definition code for java.lang.annotation.Annotation > annotationClass)
          Returns true if an annotation for the specified type is present on this element, else false.
 boolean isCompatibleWith sample code for java.lang.Package.isCompatibleWith(java.lang.String) definition code for java.lang.Package.isCompatibleWith(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  desired)
          Compare this package's specification version with a desired version.
 boolean isSealed sample code for java.lang.Package.isSealed() definition code for java.lang.Package.isSealed() ()
          Returns true if this package is sealed.
 boolean isSealed sample code for java.lang.Package.isSealed(java.net.URL) definition code for java.lang.Package.isSealed(java.net.URL) (URL sample code for java.net.URL definition code for java.net.URL  url)
          Returns true if this package is sealed with respect to the specified code source url.
 String sample code for java.lang.String definition code for java.lang.String toString sample code for java.lang.Package.toString() definition code for java.lang.Package.toString() ()
          Returns the string representation of this Package.
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Method Detail

getName sample code for java.lang.Package.getName() definition code for java.lang.Package.getName()

public String sample code for java.lang.String definition code for java.lang.String  getName()
Return the name of this package.

Returns:
The name of this package using the Java language dot notation for the package. i.e java.lang

getSpecificationTitle sample code for java.lang.Package.getSpecificationTitle() definition code for java.lang.Package.getSpecificationTitle()

public String sample code for java.lang.String definition code for java.lang.String  getSpecificationTitle()
Return the title of the specification that this package implements.

Returns:
the specification title, null is returned if it is not known.

getSpecificationVersion sample code for java.lang.Package.getSpecificationVersion() definition code for java.lang.Package.getSpecificationVersion()

public String sample code for java.lang.String definition code for java.lang.String  getSpecificationVersion()
Returns the version number of the specification that this package implements. This version string must be a sequence of positive decimal integers separated by "."'s and may have leading zeros. When version strings are compared the most significant numbers are compared.

Returns:
the specification version, null is returned if it is not known.

getSpecificationVendor sample code for java.lang.Package.getSpecificationVendor() definition code for java.lang.Package.getSpecificationVendor()

public String sample code for java.lang.String definition code for java.lang.String  getSpecificationVendor()
Return the name of the organization, vendor, or company that owns and maintains the specification of the classes that implement this package.

Returns:
the specification vendor, null is returned if it is not known.

getImplementationTitle sample code for java.lang.Package.getImplementationTitle() definition code for java.lang.Package.getImplementationTitle()

public String sample code for java.lang.String definition code for java.lang.String  getImplementationTitle()
Return the title of this package.

Returns:
the title of the implementation, null is returned if it is not known.

getImplementationVersion sample code for java.lang.Package.getImplementationVersion() definition code for java.lang.Package.getImplementationVersion()

public String sample code for java.lang.String definition code for java.lang.String  getImplementationVersion()
Return the version of this implementation. It consists of any string assigned by the vendor of this implementation and does not have any particular syntax specified or expected by the Java runtime. It may be compared for equality with other package version strings used for this implementation by this vendor for this package.

Returns:
the version of the implementation, null is returned if it is not known.

getImplementationVendor sample code for java.lang.Package.getImplementationVendor() definition code for java.lang.Package.getImplementationVendor()

public String sample code for java.lang.String definition code for java.lang.String  getImplementationVendor()
Returns the name of the organization, vendor or company that provided this implementation.

Returns:
the vendor that implemented this package..

isSealed sample code for java.lang.Package.isSealed() definition code for java.lang.Package.isSealed()

public boolean isSealed()
Returns true if this package is sealed.

Returns:
true if the package is sealed, false otherwise

isSealed sample code for java.lang.Package.isSealed(java.net.URL) definition code for java.lang.Package.isSealed(java.net.URL)

public boolean isSealed(URL sample code for java.net.URL definition code for java.net.URL  url)
Returns true if this package is sealed with respect to the specified code source url.

Parameters:
url - the code source url
Returns:
true if this package is sealed with respect to url

isCompatibleWith sample code for java.lang.Package.isCompatibleWith(java.lang.String) definition code for java.lang.Package.isCompatibleWith(java.lang.String)

public boolean isCompatibleWith(String sample code for java.lang.String definition code for java.lang.String  desired)
                         throws NumberFormatException sample code for java.lang.NumberFormatException definition code for java.lang.NumberFormatException 
Compare this package's specification version with a desired version. It returns true if this packages specification version number is greater than or equal to the desired version number.

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.

Parameters:
desired - the version string of the desired version.
Returns:
true if this package's version number is greater than or equal to the desired version number
Throws:
NumberFormatException sample code for java.lang.NumberFormatException definition code for java.lang.NumberFormatException - if the desired or current version is not of the correct dotted form.

getPackage sample code for java.lang.Package.getPackage(java.lang.String) definition code for java.lang.Package.getPackage(java.lang.String)

public static Package sample code for java.lang.Package definition code for java.lang.Package  getPackage(String sample code for java.lang.String definition code for java.lang.String  name)
Find a package by name in the callers 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.

Parameters:
name - a package name, for example, java.lang.
Returns:
the package of the requested name. It may be null if no package information is available from the archive or codebase.

getPackages sample code for java.lang.Package.getPackages() definition code for java.lang.Package.getPackages()

public static Package sample code for java.lang.Package definition code for java.lang.Package [] getPackages()
Get all the packages currently known for the caller's 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.

Returns:
a new array of packages known to the callers ClassLoader instance. An zero length array is returned if none are known.

hashCode sample code for java.lang.Package.hashCode() definition code for java.lang.Package.hashCode()

public int hashCode()
Return the hash code computed from the package name.

Overrides:
hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() in class Object sample code for java.lang.Object definition code for java.lang.Object
Returns:
the hash code computed from the package name.
See Also:
Object.equals(java.lang.Object) sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , Hashtable sample code for java.util.Hashtable definition code for java.util.Hashtable

toString sample code for java.lang.Package.toString() definition code for java.lang.Package.toString()

public String sample code for java.lang.String definition code for java.lang.String  toString()
Returns the string representation of this Package. Its value is the string "package " and the package name. If the package title is defined it is appended. If the package version is defined it is appended.

Overrides:
toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() in class Object sample code for java.lang.Object definition code for java.lang.Object
Returns:
the string representation of the package.

getAnnotation sample code for java.lang.Package.<A extends java.lang.annotation.Annotation>getAnnotation(java.lang.Class<A>) definition code for java.lang.Package.<A extends java.lang.annotation.Annotation>getAnnotation(java.lang.Class<A>)

public <A extends Annotation sample code for java.lang.annotation.Annotation definition code for java.lang.annotation.Annotation > A getAnnotation(Class sample code for java.lang.Class definition code for java.lang.Class <A> annotationClass)
Description copied from interface: AnnotatedElement sample code for java.lang.reflect.AnnotatedElement.getAnnotation(java.lang.Class) definition code for java.lang.reflect.AnnotatedElement.getAnnotation(java.lang.Class)
Returns this element's annotation for the specified type if such an annotation is present, else null.

Specified by:
getAnnotation sample code for java.lang.reflect.AnnotatedElement.getAnnotation(java.lang.Class) definition code for java.lang.reflect.AnnotatedElement.getAnnotation(java.lang.Class) in interface AnnotatedElement sample code for java.lang.reflect.AnnotatedElement definition code for java.lang.reflect.AnnotatedElement
Parameters:
annotationClass - the Class object corresponding to the annotation type
Returns:
this element's annotation for the specified annotation type if present on this element, else null

isAnnotationPresent sample code for java.lang.Package.isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>) definition code for java.lang.Package.isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>)

public boolean isAnnotationPresent(Class sample code for java.lang.Class definition code for java.lang.Class <? extends Annotation sample code for java.lang.annotation.Annotation definition code for java.lang.annotation.Annotation > annotationClass)
Description copied from interface: AnnotatedElement sample code for java.lang.reflect.AnnotatedElement.isAnnotationPresent(java.lang.Class) definition code for java.lang.reflect.AnnotatedElement.isAnnotationPresent(java.lang.Class)
Returns true if an annotation for the specified type is present on this element, else false. This method is designed primarily for convenient access to marker annotations.

Specified by:
isAnnotationPresent sample code for java.lang.reflect.AnnotatedElement.isAnnotationPresent(java.lang.Class) definition code for java.lang.reflect.AnnotatedElement.isAnnotationPresent(java.lang.Class) in interface AnnotatedElement sample code for java.lang.reflect.AnnotatedElement definition code for java.lang.reflect.AnnotatedElement
Parameters:
annotationClass - the Class object corresponding to the annotation type
Returns:
true if an annotation for the specified annotation type is present on this element, else false

getAnnotations sample code for java.lang.Package.getAnnotations() definition code for java.lang.Package.getAnnotations()

public Annotation sample code for java.lang.annotation.Annotation definition code for java.lang.annotation.Annotation [] getAnnotations()
Description copied from interface: AnnotatedElement sample code for java.lang.reflect.AnnotatedElement.getAnnotations() definition code for java.lang.reflect.AnnotatedElement.getAnnotations()
Returns all annotations present on this element. (Returns an array of length zero if this element has no annotations.) The caller of this method is free to modify the returned array; it will have no effect on the arrays returned to other callers.

Specified by:
getAnnotations sample code for java.lang.reflect.AnnotatedElement.getAnnotations() definition code for java.lang.reflect.AnnotatedElement.getAnnotations() in interface AnnotatedElement sample code for java.lang.reflect.AnnotatedElement definition code for java.lang.reflect.AnnotatedElement
Returns:
all annotations present on this element

getDeclaredAnnotations sample code for java.lang.Package.getDeclaredAnnotations() definition code for java.lang.Package.getDeclaredAnnotations()

public Annotation sample code for java.lang.annotation.Annotation definition code for java.lang.annotation.Annotation [] getDeclaredAnnotations()
Description copied from interface: AnnotatedElement sample code for java.lang.reflect.AnnotatedElement.getDeclaredAnnotations() definition code for java.lang.reflect.AnnotatedElement.getDeclaredAnnotations()
Returns all annotations that are directly present on this element. Unlike the other methods in this interface, this method ignores inherited annotations. (Returns an array of length zero if no annotations are directly present on this element.) The caller of this method is free to modify the returned array; it will have no effect on the arrays returned to other callers.

Specified by:
getDeclaredAnnotations sample code for java.lang.reflect.AnnotatedElement.getDeclaredAnnotations() definition code for java.lang.reflect.AnnotatedElement.getDeclaredAnnotations() in interface AnnotatedElement sample code for java.lang.reflect.AnnotatedElement definition code for java.lang.reflect.AnnotatedElement
Returns:
All annotations directly present on this element