Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Uses of Class
java.lang.Module
Packages that use Module
Provides classes that are fundamental to the design of the Java programming language.
Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.
Uses of Module in java.lang
Methods in java.lang that return Module
Class.getModule()
Returns the module that this class or interface is a member of.
final Module
ClassLoader.getUnnamedModule()
Returns the unnamed Module for this class loader.
Module.addExports(String pn, Module other)
If the caller's module is this module then update this module to export the given package to the given module.
Module.addOpens(String pn, Module other)
If this module has opened a package to at least the caller module then update this module to open the package to the given module.
Module.addReads(Module other)
If the caller's module is this module then update this module to read the given module.
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.
Methods in java.lang that return types with arguments of type Module
ModuleLayer.findModule(String name)
Returns the module with the given name in this layer, or if not in this layer, the parent layers.
ModuleLayer.modules()
Returns an unmodifiable set of the modules in this layer.
Methods in java.lang with parameters of type Module
static Class<?>
Class.forName(Module module, String name)
Returns the Class with the given binary name in the given module.
Module.addExports(String pn, Module other)
If the caller's module is this module then update this module to export the given package to the given module.
Module.addOpens(String pn, Module other)
If this module has opened a package to at least the caller module then update this module to open the package to the given module.
Module.addReads(Module other)
If the caller's module is this module then update this module to read the given module.
boolean
Module.canRead(Module other)
Indicates if this module reads the given module.
boolean
Module.isExported(String pn, Module other)
Returns true if this module exports the given package to at least the given module.
boolean
Module.isOpen(String pn, Module other)
Returns true if this module has opened a package to at least the given module.
ModuleLayer.Controller.addExports(Module source, String pn, Module target)
Updates module source in the layer to export a package to module target.
ModuleLayer.Controller.addOpens(Module source, String pn, Module target)
Updates module source in the layer to open a package to module target.
ModuleLayer.Controller.addReads(Module source, Module target)
Updates module source in the layer to read module target.
System.LoggerFinder.getLocalizedLogger(String name, ResourceBundle bundle, Module module)
Returns a localizable instance of Logger for the given module.
abstract System.Logger
System.LoggerFinder.getLogger(String name, Module module)
Returns an instance of Logger for the given module.
Uses of Module in java.util
Methods in java.util with parameters of type Module
ResourceBundle.getBundle(String baseName, Locale targetLocale, Module module)
Gets a resource bundle using the specified base name and locale on behalf of the specified module.
ResourceBundle.getBundle(String baseName, Module module)
Gets a resource bundle using the specified base name and the default locale on behalf of the specified module.

 Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Java API documentation generated with FlexDoc/Javadoc 2.0 using JavadocClassic 3.0 template set.
FlexDoc/Javadoc is a template-driven programming tool for rapid development of any Javadoc-based Java API documentation generators (i.e. doclets). If you need to customize your Javadoc without writing a full-blown doclet from scratch, FlexDoc/Javadoc may be the only tool able to help you! Find out more at www.flexdoc.xyz