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 Modifier and Type 方法 描述 Configuration
ModuleLayer. configuration()
返回此图层的配置。Methods in java.lang with parameters of type Configuration Modifier and Type 方法 描述 ModuleLayer
ModuleLayer. defineModules(Configuration cf, Function<String,ClassLoader> clf)
通过在给定的Java虚拟机的Configuration
定义模块,创建一个新的模块层,将该层作为其父层。static ModuleLayer.Controller
ModuleLayer. defineModules(Configuration cf, List<ModuleLayer> parentLayers, Function<String,ClassLoader> clf)
通过在给定的Java虚拟机的Configuration
定义模块来创建新的模块层。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 Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 List<Configuration>
Configuration. parents()
按照搜索顺序返回此配置的父母的不可修改列表。Method parameters in java.lang.module with type arguments of type Configuration Modifier and Type 方法 描述 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)
解决一系列根模块,具有服务绑定功能,以创建配置。
-