Empaquetar el método getSpecificationTitle() en Java con ejemplos

El método getSpecificationTitle() de la clase java.lang.Package se utiliza para obtener el título de la especificación de este paquete. El método devuelve el título de especificación del paquete como una string.
Sintaxis: 

public String getSpecificationTitle()

Parámetro: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve el título de la especificación del paquete como una string, si se conoce. De lo contrario, devuelve nulo Los
siguientes programas demuestran el método getSpecificationTitle().
Ejemplo 1:

Java

// Java program to demonstrate
// getSpecificationTitle() 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 title of myPackage
        // using getSpecificationTitle() method
        System.out.println(
            "Specification title of myPackage: "
            + myPackage.getSpecificationTitle());
    }
}
Producción: 

Package represented by myPackage: package java.lang, Java Platform API Specification, version 1.8
Specification title of myPackage: Java Platform API Specification

 

Ejemplo 2:

Java

// Java program to demonstrate
// getSpecificationTitle() 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 getSpecificationTitle() method
        System.out.println(
            "Specification title of myPackage: "
            + myPackage.getSpecificationTitle());
    }
}
Producción: 

Package represented by myPackage: package java.io, Java Platform API Specification, version 1.8
Specification title of myPackage: Java Platform API Specification

 

Referencia: https://docs.oracle.com/javase/9/docs/api/java/lang/Package.html#getSpecificationTitle–

Publicación traducida automáticamente

Artículo escrito por guptayashgupta53 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *