Saturday, July 4, 2026
HomeLanguagesJavaPackage isSealed() method in Java with Examples

Package isSealed() method in Java with Examples

The isSealed() method of java.lang.Package class is used to check if this package is sealed or not. The method returns the result as a boolean value.
Syntax: 
 

public boolean isSealed()

Parameter: This method does not accept any parameter.
Return Value: This method returns the result as a boolean value.
Below programs demonstrate the isSealed() method.
Example 1:
 

Java




// Java program to demonstrate
// isSealed() 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());
 
        // check if this package is sealed or not
        // using isSealed() method
        System.out.println(
            "Is this package sealed or not: "
            + myPackage.isSealed());
    }
}


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() 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());
 
        // check if this package is sealed or not
        // using isSealed() method
        System.out.println(
            "Is this package sealed or not: "
            + myPackage.isSealed());
    }
}


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–
 

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32519 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6900 POSTS0 COMMENTS
Nicole Veronica
12015 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6967 POSTS0 COMMENTS