El método getSpecificationVendor() de la clase java.lang.Package se utiliza para obtener el proveedor de la especificación de este paquete. El método devuelve el proveedor de especificaciones del paquete como una string.
Sintaxis:
public String getSpecificationVendor()
Parámetro: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve la especificación del proveedor del paquete como una string, si se conoce. De lo contrario, devuelve nulo Los
siguientes programas demuestran el método getSpecificationVendor().
Ejemplo 1:
Java
// Java program to demonstrate // getSpecificationVendor() 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 vendor // of myPackage using // getSpecificationVendor() method System.out.println( "Specification vendor" + " of myPackage: " + myPackage.getSpecificationVendor()); } }
Package represented by myPackage: package java.lang, Java Platform API Specification, version 1.8 Specification vendor of myPackage: Oracle Corporation
Ejemplo 2:
Java
// Java program to demonstrate // getSpecificationVendor() 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 specification vendor // of myPackage using // getSpecificationVendor() method System.out.println( "Specification vendor" + " of myPackage: " + myPackage.getSpecificationVendor()); } }
Package represented by myPackage: package java.io, Java Platform API Specification, version 1.8 Specification vendor of myPackage: Oracle Corporation
Referencia: https://docs.oracle.com/javase/9/docs/api/java/lang/Package.html#getSpecificationVendor–
Publicación traducida automáticamente
Artículo escrito por guptayashgupta53 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA