public class Package extends Objectimplements 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 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 method for details.
Specification version numbers use a syntax that consists of nonnegative 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
Characterreturns.isDigit(char) 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.
| Modifier and Type | Method and Description |
|---|---|
<A extends Annotation |
getAnnotation(Class
Returns this element's annotation for the specified type if such an annotation is
present, else null.
|
Annotation |
getAnnotations()
Returns annotations that are
present on this element.
|
<A extends Annotation |
getAnnotationsByType(Class
Returns annotations that are
associated with this element.
|
<A extends Annotation |
getDeclaredAnnotation(Class
Returns this element's annotation for the specified type if such an annotation is
directly present, else null.
|
Annotation |
getDeclaredAnnotations()
Returns annotations that are
directly present on this element.
|
<A extends Annotation |
getDeclaredAnnotationsByType(Class
Returns this element's annotation(s) for the specified type if such annotations are either
directly present or
indirectly present.
|
String |
getImplementationTitle()
Return the title of this package.
|
String |
getImplementationVendor()
Returns the name of the organization, vendor or company that provided this implementation.
|
String |
getImplementationVersion()
Return the version of this implementation.
|
String |
getName()
Return the name of this package.
|
static Package |
getPackage(String
Find a package by name in the callers
ClassLoader instance.
|
static Package |
getPackages()
Get all the packages currently known for the caller's
ClassLoader instance.
|
String |
getSpecificationTitle()
Return the title of the specification that this package implements.
|
String |
getSpecificationVendor()
Return the name of the organization, vendor, or company that owns and maintains the specification of the classes that implement this package.
|
String |
getSpecificationVersion()
Returns the version number of the specification that this package implements.
|
int |
hashCode()
Return the hash code computed from the package name.
|
boolean |
isAnnotationPresent(Class
Returns true if an annotation for the specified type is
present on this element, else false.
|
boolean |
isCompatibleWith(String
Compare this package's specification version with a desired version.
|
boolean |
isSealed()
Returns true if this package is sealed.
|
boolean |
isSealed(URL
Returns true if this package is sealed with respect to the specified code source url.
|
String |
toString()
Returns the string representation of this Package.
|
public StringgetName()
java.lang
public StringgetSpecificationTitle()
public StringgetSpecificationVersion()
public StringgetSpecificationVendor()
public StringgetImplementationTitle()
public StringgetImplementationVersion()
public StringgetImplementationVendor()
public boolean isSealed()
public boolean isSealed(URLurl)
url - the code source url
public boolean isCompatibleWith(Stringdesired) 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.
NumberFormatException - if the desired or current version is not of the correct dotted form.
public static PackagegetPackage(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.
public int hashCode()
hashCode in class
Object
Object.equals(java.lang.Object) ,
System.identityHashCode(java.lang.Object)
public StringtoString()
public <A extends Annotation> A getAnnotation(Class <A> annotationClass)
AnnotatedElement
getAnnotation in interface
AnnotatedElement
A - the type of the annotation to query for and return if present
annotationClass - the Class object corresponding to the annotation type
NullPointerException - if the given annotation class is null
public boolean isAnnotationPresent(Class<? extends Annotation > annotationClass)
The truth value returned by this method is equivalent to: getAnnotation(annotationClass) != null
The body of the default method is specified to be the code above.
isAnnotationPresent in interface
AnnotatedElement
annotationClass - the Class object corresponding to the annotation type
NullPointerException - if the given annotation class is null
public <A extends Annotation> A[] getAnnotationsByType(Class <A> annotationClass)
AnnotatedElement
AnnotatedElement.getAnnotation(Class) is that this method detects if its argument is a
repeatable annotation type (JLS 9.6), and if so, attempts to find one or more annotations of that type by "looking through" a container annotation. The caller of this method is free to modify the returned array; it will have no effect on the arrays returned to other callers.
getAnnotationsByType in interface
AnnotatedElement
A - the type of the annotation to query for and return if present
annotationClass - the Class object corresponding to the annotation type
NullPointerException - if the given annotation class is null
public Annotation[] getAnnotations()
AnnotatedElement
getAnnotations in interface
AnnotatedElement
public <A extends Annotation> A getDeclaredAnnotation(Class <A> annotationClass)
AnnotatedElement
getDeclaredAnnotation in interface
AnnotatedElement
A - the type of the annotation to query for and return if directly present
annotationClass - the Class object corresponding to the annotation type
NullPointerException - if the given annotation class is null
public <A extends Annotation> A[] getDeclaredAnnotationsByType(Class <A> annotationClass)
AnnotatedElement
AnnotatedElement.getDeclaredAnnotation(Class) is that this method detects if its argument is a
repeatable annotation type (JLS 9.6), and if so, attempts to find one or more annotations of that type by "looking through" a container annotation if one is present. The caller of this method is free to modify the returned array; it will have no effect on the arrays returned to other callers.
getDeclaredAnnotationsByType in interface
AnnotatedElement
A - the type of the annotation to query for and return if directly or indirectly present
annotationClass - the Class object corresponding to the annotation type
NullPointerException - if the given annotation class is null
public Annotation[] getDeclaredAnnotations()
AnnotatedElement
getDeclaredAnnotations in interface
AnnotatedElement