java.lang
Class Package

java.lang.Object
  |
  +--java.lang.Package

public synchronized class Package
extends Object


Method Summary
 String getImplementationTitle()
           
 String getImplementationVendor()
           
 String getImplementationVersion()
           
 String getName()
           
static Package getPackage(String)
           
static Package[] getPackages()
           
 String getSpecificationTitle()
           
 String getSpecificationVendor()
           
 String getSpecificationVersion()
           
 int hashCode()
          returns the hashcode of this object.
 boolean isCompatibleWith(String)
           
 boolean isSealed()
           
 boolean isSealed(java.net.URL)
           
 String toString()
          Returns the string representation of the object, that is full_class_name@internal_address_hex.
 
Methods inherited from class java.lang.Object
equals, getClass, notify, wait, wait
 

Method Detail

getImplementationTitle

public String getImplementationTitle()

getImplementationVendor

public String getImplementationVendor()

getImplementationVersion

public String getImplementationVersion()

getName

public String getName()

getPackage

public static Package getPackage(String)

getPackages

public static Package[] getPackages()

getSpecificationTitle

public String getSpecificationTitle()

getSpecificationVendor

public String getSpecificationVendor()

getSpecificationVersion

public String getSpecificationVersion()

hashCode

public int hashCode()
Description copied from class: Object
returns the hashcode of this object.
Overrides:
hashCode in class Object

isCompatibleWith

public boolean isCompatibleWith(String)
                         throws NumberFormatException

isSealed

public boolean isSealed()

isSealed

public boolean isSealed(java.net.URL)

toString

public String toString()
Description copied from class: Object
Returns the string representation of the object, that is full_class_name@internal_address_hex. Note that, differently from JDK, the package separator is / instead of .
Overrides:
toString in class Object