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 TypeMethodDescriptionReturns the exported package.default Set
<AccessFlag> Returns the flags associated with this export declaration, as a set of flag enums.int
Returns the flags associated with this export declaration, as a bit mask.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.- Returns:
- the flags associated with this export declaration, as a bit mask
- See Also:
-
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
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
Returns a module export description.- Parameters:
exports
- the exported packageexportFlags
- the export flags, as a bitmaskexportsTo
- 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 packageexportFlags
- the export flagsexportsTo
- 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 theAccessFlag.Location.MODULE_EXPORTS
location
-
of
Returns a module export description.- Parameters:
exports
- the exported packageexportFlags
- the export flags, as a bitmaskexportsTo
- 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 packageexportFlags
- the export flagsexportsTo
- 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 theAccessFlag.Location.MODULE_EXPORTS
location
-
of
Returns a module export description.- Parameters:
exports
- the exported packageexportFlags
- the export flags, as a bitmaskexportsTo
- 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 packageexportFlags
- the export flagsexportsTo
- 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 theAccessFlag.Location.MODULE_EXPORTS
location
-
of
Returns a module export description.- Parameters:
exports
- the exported packageexportFlags
- the export flags, as a bitmaskexportsTo
- 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 packageexportFlags
- the export flagsexportsTo
- 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 theAccessFlag.Location.MODULE_EXPORTS
location
-