El método getSpecificationVersion() de la clase java.lang.Package se utiliza para obtener la versión de la especificación de este paquete. El método devuelve la versión de especificación del paquete como una string.
Sintaxis:
public String getSpecificationVersion()
Parámetro: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve la versión de especificación del paquete como una string, si se conoce. De lo contrario, devuelve nulo Los
siguientes programas demuestran el método getSpecificationVersion().
Ejemplo 1:
Java
// Java program to demonstrate // getSpecificationVersion() method public class Test { public static void main(String[] args) { // returns the Package object // for this package Package myPackage = Package.getPackage("java.lang"); System.out.println( "Package represented by myPackage: " + myPackage.toString()); // Get the specification version of myPackage // using getSpecificationVersion() method System.out.println( "Specification version of myPackage: " + myPackage.getSpecificationVersion()); } }
Package represented by myPackage: package java.lang, Java Platform API Specification, version 1.8 Specification version of myPackage: 1.8
Ejemplo 2:
Java
// Java program to demonstrate // getSpecificationVersion() method public class Test { public static void main(String[] args) { // returns the Package object // for this package Package myPackage = Package.getPackage("java.io"); System.out.println( "Package represented by myPackage: " + myPackage.toString()); // Get the name of myPackage // using getSpecificationVersion() method System.out.println( "Specification version of myPackage: " + myPackage.getSpecificationVersion()); } }
Package represented by myPackage: package java.io, Java Platform API Specification, version 1.8 Specification version of myPackage: 1.8
Referencia: https://docs.oracle.com/javase/9/docs/api/java/lang/Package.html#getSpecificationVersion–
Publicación traducida automáticamente
Artículo escrito por guptayashgupta53 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA