W3cubDocs

/OpenJDK 25

Interface ModuleExportInfo

public sealed interface ModuleExportInfo
Models a single "exports" declaration in the ModuleAttribute.
See Java Virtual Machine Specification:
4.7.25 The Module Attribute
Since:
24
See Also:

Method Summary

Modifier and Type Method Description
PackageEntry exportedPackage()
Returns the exported package.
default Set<AccessFlag> exportsFlags()
Returns the flags associated with this export declaration, as a set of flag enums.
int exportsFlagsMask()
Returns the flags associated with this export declaration, as a bit mask.
List<ModuleEntry> exportsTo()
Returns the list of modules to which this package is exported, or empty if this is an unqualified export.
default boolean has(AccessFlag flag)
Returns whether the export declaration has the specified access flag set.
static ModuleExportInfo of(PackageEntry exports, int exportFlags, ModuleEntry... exportsTo)
Returns a module export description.
static ModuleExportInfo of(PackageEntry exports, int exportFlags, List<ModuleEntry> exportsTo)
Returns a module export description.
static ModuleExportInfo of(PackageEntry exports, Collection<AccessFlag> exportFlags, ModuleEntry... exportsTo)
Returns a module export description.
static ModuleExportInfo of(PackageEntry exports, Collection<AccessFlag> exportFlags, List<ModuleEntry> exportsTo)
Returns a module export description.
static ModuleExportInfo of(PackageDesc exports, int exportFlags, ModuleDesc... exportsTo)
Returns a module export description.
static ModuleExportInfo of(PackageDesc exports, int exportFlags, List<ModuleDesc> exportsTo)
Returns a module export description.
static ModuleExportInfo of(PackageDesc exports, Collection<AccessFlag> exportFlags, ModuleDesc... exportsTo)
Returns a module export description.
static ModuleExportInfo of(PackageDesc exports, Collection<AccessFlag> exportFlags, List<ModuleDesc> exportsTo)
Returns a module export description.

Method Details

exportedPackage

PackageEntry exportedPackage()
Returns the exported package.
Returns:
the exported package
See Also:

exportsFlagsMask

int exportsFlagsMask()
Returns the flags associated with this export declaration, as a bit mask. It is in the range of unsigned short, [0, 0xFFFF].
Returns:
the flags associated with this export declaration, as a bit mask
See Also:

exportsFlags

default Set<AccessFlag> exportsFlags()
Returns the flags associated with this export declaration, as a set of flag enums.
Returns:
the flags associated with this export declaration, as a set of flag enums
Throws:
IllegalArgumentException - if the flags mask has any undefined bit set
See Also:

has

default boolean has(AccessFlag flag)
Returns whether the export declaration has the specified access flag set.
Parameters:
flag - the access flag
Returns:
whether the export declaration has the specified access flag set
See Also:

exportsTo

List<ModuleEntry> exportsTo()
Returns the list of modules to which this package is exported, or empty if this is an unqualified export.
Returns:
the list of modules to which this package is exported, or empty if this is an unqualified export
See Also:

of

static ModuleExportInfo of(PackageEntry exports, int exportFlags, List<ModuleEntry> exportsTo)
Returns a module export description.
Parameters:
exports - the exported package
exportFlags - the export flags, as a bitmask
exportsTo - the modules to which this package is exported, or empty if this is an unqualified export
Returns:
a module export description

of

static ModuleExportInfo of(PackageEntry exports, Collection<AccessFlag> exportFlags, List<ModuleEntry> exportsTo)
Returns a module export description.
Parameters:
exports - the exported package
exportFlags - the export flags
exportsTo - the modules to which this package is exported, or empty if this is an unqualified export
Returns:
a module export description
Throws:
IllegalArgumentException - if any flag cannot be applied to the AccessFlag.Location.MODULE_EXPORTS location

of

static ModuleExportInfo of(PackageEntry exports, int exportFlags, ModuleEntry... exportsTo)
Returns a module export description.
Parameters:
exports - the exported package
exportFlags - the export flags, as a bitmask
exportsTo - the modules to which this package is exported, or empty if this is an unqualified export
Returns:
a module export description

of

static ModuleExportInfo of(PackageEntry exports, Collection<AccessFlag> exportFlags, ModuleEntry... exportsTo)
Returns a module export description.
Parameters:
exports - the exported package
exportFlags - the export flags
exportsTo - the modules to which this package is exported, or empty if this is an unqualified export
Returns:
a module export description
Throws:
IllegalArgumentException - if any flag cannot be applied to the AccessFlag.Location.MODULE_EXPORTS location

of

static ModuleExportInfo of(PackageDesc exports, int exportFlags, List<ModuleDesc> exportsTo)
Returns a module export description.
Parameters:
exports - the exported package
exportFlags - the export flags, as a bitmask
exportsTo - the modules to which this package is exported, or empty if this is an unqualified export
Returns:
a module export description

of

static ModuleExportInfo of(PackageDesc exports, Collection<AccessFlag> exportFlags, List<ModuleDesc> exportsTo)
Returns a module export description.
Parameters:
exports - the exported package
exportFlags - the export flags
exportsTo - the modules to which this package is exported, or empty if this is an unqualified export
Returns:
a module export description
Throws:
IllegalArgumentException - if any flag cannot be applied to the AccessFlag.Location.MODULE_EXPORTS location

of

static ModuleExportInfo of(PackageDesc exports, int exportFlags, ModuleDesc... exportsTo)
Returns a module export description.
Parameters:
exports - the exported package
exportFlags - the export flags, as a bitmask
exportsTo - the modules to which this package is exported, or empty if this is an unqualified export
Returns:
a module export description

of

static ModuleExportInfo of(PackageDesc exports, Collection<AccessFlag> exportFlags, ModuleDesc... exportsTo)
Returns a module export description.
Parameters:
exports - the exported package
exportFlags - the export flags
exportsTo - the modules to which this package is exported, or empty if this is an unqualified export
Returns:
a module export description
Throws:
IllegalArgumentException - if any flag cannot be applied to the AccessFlag.Location.MODULE_EXPORTS location

© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/classfile/attribute/ModuleExportInfo.html