java.lang.Package.getSpecificationVendor() java.lang.Package.getSpecificationTitle() java.lang.Package.getSpecificationVersion() java.lang.Package.getSpecificationVendor() package com.codingdict; 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()); } } java.lang.Package.getSpecificationTitle() java.lang.Package.getSpecificationVersion()