Uses of Class
java.lang.module.Configuration
-
Packages that use Configuration 软件包 描述 java.lang 提供对Java编程语言设计至关重要的类。java.lang.module 通过解析和服务绑定来支持模块描述符和创建模块配置的类。 -
-
Uses of Configuration in java.lang
Methods in java.lang that return Configuration 变量和类型 方法 描述 Configuration
ModuleLayer. configuration()
返回此图层的配置。Methods in java.lang with parameters of type Configuration 变量和类型 方法 描述 ModuleLayer
ModuleLayer. defineModules(Configuration cf, Function<String,ClassLoader> clf)
通过将给定Configuration
的模块定义到Java虚拟机,创建一个新模块层,将该层作为其父层。static ModuleLayer.Controller
ModuleLayer. defineModules(Configuration cf, List<ModuleLayer> parentLayers, Function<String,ClassLoader> clf)
通过将给定Configuration
的模块定义到Java虚拟机来创建新模块层。ModuleLayer
ModuleLayer. defineModulesWithManyLoaders(Configuration cf, ClassLoader parentLoader)
通过将给定Configuration
的模块定义到Java虚拟机,创建一个新模块层,将该层作为其父层。static ModuleLayer.Controller
ModuleLayer. defineModulesWithManyLoaders(Configuration cf, List<ModuleLayer> parentLayers, ClassLoader parentLoader)
通过将给定Configuration
的模块定义到Java虚拟机来创建新模块层。ModuleLayer
ModuleLayer. defineModulesWithOneLoader(Configuration cf, ClassLoader parentLoader)
通过将给定Configuration
的模块定义到Java虚拟机,创建一个新模块层,将该层作为其父层。static ModuleLayer.Controller
ModuleLayer. defineModulesWithOneLoader(Configuration cf, List<ModuleLayer> parentLayers, ClassLoader parentLoader)
通过将给定Configuration
的模块定义到Java虚拟机来创建新模块层。 -
Uses of Configuration in java.lang.module
Methods in java.lang.module that return Configuration 变量和类型 方法 描述 Configuration
ResolvedModule. configuration()
返回此已解析模块所在的配置。static Configuration
Configuration. empty()
返回 空配置。Configuration
Configuration. resolve(ModuleFinder before, ModuleFinder after, Collection<String> roots)
解析一组根模块,以此配置作为其父模块,以创建新配置。static Configuration
Configuration. resolve(ModuleFinder before, List<Configuration> parents, ModuleFinder after, Collection<String> roots)
解析根模块的集合以创建配置。Configuration
Configuration. resolveAndBind(ModuleFinder before, ModuleFinder after, Collection<String> roots)
使用服务绑定解析一组根模块,并将此配置作为其父配置,以创建新配置。static Configuration
Configuration. resolveAndBind(ModuleFinder before, List<Configuration> parents, ModuleFinder after, Collection<String> roots)
使用服务绑定解析一组根模块,以创建配置。Methods in java.lang.module that return types with arguments of type Configuration 变量和类型 方法 描述 List<Configuration>
Configuration. parents()
按搜索顺序返回此配置的父项的不可修改列表。Method parameters in java.lang.module with type arguments of type Configuration 变量和类型 方法 描述 static Configuration
Configuration. resolve(ModuleFinder before, List<Configuration> parents, ModuleFinder after, Collection<String> roots)
解析根模块的集合以创建配置。static Configuration
Configuration. resolveAndBind(ModuleFinder before, List<Configuration> parents, ModuleFinder after, Collection<String> roots)
使用服务绑定解析一组根模块,以创建配置。
-