public boolean isNamed()
Returns true
if this module is a named module.
true
if this is a named module
ClassLoader.getUnnamedModule()
public String getName()
Returns the module name or null
if this module is an unnamed module.
public ClassLoader getClassLoader()
Returns the
ClassLoader
for this module.
If there is a security manager then its checkPermission
method if first called with a RuntimePermission("getClassLoader")
permission to check that the caller is allowed to get access to the class loader.
SecurityException
- If denied by the security manager
public ModuleDescriptor getDescriptor()
Returns the module descriptor for this module or null
if this module is an unnamed module.
public ModuleLayer getLayer()
Returns the module layer that contains this module or
null
if this module is not in a module layer. A module layer contains named modules and therefore this method always returns
null
when invoked on an unnamed module.
Dynamic modules are named modules that are generated at runtime. A dynamic module may or may not be in a module layer.
Proxy
public boolean canRead(Module other)
Indicates if this module reads the given module. This method returns true
if invoked to test if this module reads itself. It also returns true
if invoked on an unnamed module (as unnamed modules read all modules).
other
- The other module
true
if this module reads other
addReads(Module)
public Module addReads(Module other)
If the caller's module is this module then update this module to read the given module. This method is a no-op if other
is this module (all modules read themselves), this module is an unnamed module (as unnamed modules read all modules), or this module already reads other
.
other
from being GC'ed when this module is strongly reachable.
other
- The other module
IllegalCallerException
- If this is a named module and the caller's module is not this module
canRead(java.lang.Module)
public boolean isExported(String pn, Module other)
Returns
true
if this module exports the given package to at least the given module.
This method returns true
if invoked to test if a package in this module is exported to itself. It always returns true
when invoked on an unnamed module. A package that is open
to the given module is considered exported to that module at run-time and so this method returns true
if the package is open to the given module.
This method does not check if the given module reads this module.
pn
- The package name
other
- The other module
true
if this module exports the package to at least the given module
ModuleDescriptor.exports()
, addExports(String,Module)
public boolean isOpen(String pn, Module other)
Returns
true
if this module has
openeda package to at least the given module.
This method returns true
if invoked to test if a package in this module is open to itself. It returns true
when invoked on an open
module with a package in the module. It always returns true
when invoked on an unnamed module.
This method does not check if the given module reads this module.
pn
- The package name
other
- The other module
true
if this module has opened the package to at least the given module
ModuleDescriptor.opens()
, addOpens(String,Module)
, AccessibleObject.setAccessible(boolean)
, MethodHandles.privateLookupIn(java.lang.Class<?>, java.lang.invoke.MethodHandles.Lookup)
public boolean isExported(String pn)
Returns
true
if this module exports the given package unconditionally.
This method always returns true
when invoked on an unnamed module. A package that is opened
unconditionally is considered exported unconditionally at run-time and so this method returns true
if the package is opened unconditionally.
This method does not check if the given module reads this module.
pn
- The package name
true
if this module exports the package unconditionally
ModuleDescriptor.exports()
public boolean isOpen(String pn)
Returns
true
if this module has
openeda package unconditionally.
This method always returns true
when invoked on an unnamed module. Additionally, it always returns true
when invoked on an open
module with a package in the module.
This method does not check if the given module reads this module.
pn
- The package name
true
if this module has opened the package unconditionally
ModuleDescriptor.opens()
public Module addExports(String pn, Module other)
This method has no effect if the package is already exported (or open) to the given module.
pn
- The package name
other
- The module
IllegalArgumentException
- If pn
is null
, or this is a named module and the package pn
is not a package in this module
IllegalCallerException
- If this is a named module and the caller's module is not this module
isExported(String,Module)
public Module addOpens(String pn, Module other)
If this module has
openeda package to at least the caller module then update this module to open the package to the given module. Opening a package with this method allows all types in the package, and all their members, not just public types and their public members, to be reflected on by the given module when using APIs that support private access or a way to bypass or suppress default Java language access control checks.
This method has no effect if the package is already open to the given module.
pn
- The package name
other
- The module
IllegalArgumentException
- If pn
is null
, or this is a named module and the package pn
is not a package in this module
IllegalCallerException
- If this is a named module and this module has not opened the package to at least the caller's module
isOpen(String,Module)
, AccessibleObject.setAccessible(boolean)
, MethodHandles.privateLookupIn(java.lang.Class<?>, java.lang.invoke.MethodHandles.Lookup)
public Module addUses(Class<?> service)
If the caller's module is this module then update this module to add a service dependence on the given service type. This method is intended for use by frameworks that invoke
ServiceLoader
on behalf of other modules or where the framework is passed a reference to the service type by other code. This method is a no-op when invoked on an unnamed module or an automatic module.
This method does not cause resolveAndBind
to be re-run.
service
- The service type
IllegalCallerException
- If this is a named module and the caller's module is not this module
canUse(Class)
, ModuleDescriptor.uses()
public boolean canUse(Class<?> service)
Indicates if this module has a service dependence on the given service type. This method always returns true
when invoked on an unnamed module or an automatic module.
service
- The service type
true
if this module uses service type st
addUses(Class)
public Set<String> getPackages()
Returns the set of package names for the packages in this module.
For named modules, the returned set contains an element for each package in the module.
For unnamed modules, this method is the equivalent to invoking the getDefinedPackages
method of this module's class loader and returning the set of package names.
public <T extends Annotation> T getAnnotation(Class<T> annotationClass)
Returns this element's annotation for the specified type if such an annotation is present, else null. This method returns null
when invoked on an unnamed module.
getAnnotation
in interface AnnotatedElement
T
- the type of the annotation to query for and return if present
annotationClass
- the Class object corresponding to the annotation type
public Annotation[] getAnnotations()
Returns annotations that are present on this element. If there are no annotations present on this element, the return value is an array of length 0. The caller of this method is free to modify the returned array; it will have no effect on the arrays returned to other callers. This method returns an empty array when invoked on an unnamed module.
getAnnotations
in interface AnnotatedElement
public Annotation[] getDeclaredAnnotations()
Returns annotations that are directly present on this element. This method ignores inherited annotations. If there are no annotations directly present on this element, the return value is an array of length 0. The caller of this method is free to modify the returned array; it will have no effect on the arrays returned to other callers. This method returns an empty array when invoked on an unnamed module.
getDeclaredAnnotations
in interface AnnotatedElement
public InputStream getResourceAsStream(String name) throws IOException
Returns an input stream for reading a resource in this module. The
name
parameter is a
'/'
-separated path name that identifies the resource. As with
Class.getResourceAsStream
, this method delegates to the module's class loader
findResource(String,String)
method, invoking it with the module name (or
null
when the module is unnamed) and the name of the resource. If the resource name has a leading slash then it is dropped before delegation.
A resource in a named module may be encapsulated so that it cannot be located by code in other modules. Whether a resource can be located or not is determined as follows:
.class
" then it is not encapsulated.In the above, the package name for a resource is derived from the subsequence of characters that precedes the last '/'
in the name and then replacing each '/'
character in the subsequence with '.'
. A leading slash is ignored when deriving the package name. As an example, the package name derived for a resource named "a/b/c/foo.properties
" is "a.b.c
". A resource name with the name "META-INF/MANIFEST.MF
" is never encapsulated because "META-INF
" is not a legal package name.
This method returns null
if the resource is not in this module, the resource is encapsulated and cannot be located by the caller, or access to the resource is denied by the security manager.
name
- The resource name
null
IOException
- If an I/O error occurs
Class.getResourceAsStream(String)
public String toString()
Returns the string representation of this module. For a named module, the representation is the string "module"
, followed by a space, and then the module name. For an unnamed module, the representation is the string "unnamed module"
, followed by a space, and then an implementation specific string that identifies the unnamed module.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4