Java.lang.getSpecificationVendor() Method



Description

The java.lang.Package.getSpecificationVendor() method returns the name of the organization, vendor, or company that owns and maintains the specification of the classes that implement this package.

Declaration

Following is the declaration for java.lang.Package.getSpecificationVendor() method

public String getSpecificationVendor()

Parameters

NA

Return Value

This method returns the specification vendor, null is returned if it is not known.

Exception

NA

Example

The following example shows the usage of lang.Object.getSpecificationVendor() method.

package com.tutorialspoint;

public class PackageDemo {

   public static void main(String[] args) {

      // get the java lang package
      Package pack = Package.getPackage("java.lang");

      // print the specification vendor for this package
      System.out.println("" + pack.getSpecificationVendor());
   }
}

Let us compile and run the above program, this will produce the following result −

Oracle Corporation
java_lang_package.htm
Advertisements