Package isSealed(URL) method in Java with Examples

The isSealed(URL) method of java.lang.Package class is used to check if this package is sealed or not, with respect to the specified URL. The method returns the result as a boolean value.
Syntax:Â
Â
public boolean isSealed(URL url)
Parameter: This method does not accept any parameter.
Return Value: This method returns the result as a boolean value.
Below programs demonstrate the isSealed(URL) method.
Example 1:
Â
Java
// Java program to demonstrate// isSealed(URL) methodÂ
import java.net.*;Â
public class Test {    public static void main(String[] args)        throws MalformedURLException    {Â
        // returns the Package        // object for this package        Package myPackage            = Package.getPackage("java.lang");Â
        System.out.println(            "Package represented by myPackage: "            + myPackage.toString());Â
        URL urlÂ
        // check if this package is sealed or not        // using isSealed(URL) method        System.out.println(            "Is this package sealed or not: "            + myPackage.isSealed(url));    }} |
Output:Â
Package represented by myPackage: package java.lang, Java Platform API Specification, version 1.8 Is this package sealed or not: false
Â
Example 2:
Â
Java
// Java program to demonstrate// isSealed(URL) methodÂ
import java.net.*;Â
public class Test {    public static void main(String[] args)        throws MalformedURLException    {Â
        // returns the Package        // object for this package        Package myPackage            = Package.getPackage("java.io");Â
        System.out.println(            "Package represented by myPackage: "            + myPackage.toString());Â
        URL urlÂ
        // check if this package is sealed or not        // using isSealed(URL) method        System.out.println(            "Is this package sealed or not: "            + myPackage.isSealed(url));    }} |
Output:Â
Package represented by myPackage: package java.io, Java Platform API Specification, version 1.8 Is this package sealed or not: false
Â
Reference: https://docs.oracle.com/javase/9/docs/api/java/lang/Package.html#isSealed–
Â



