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 变量和类型 方法 描述 ConfigurationModuleLayer. configuration()返回此图层的配置。Methods in java.lang with parameters of type Configuration 变量和类型 方法 描述 ModuleLayerModuleLayer. defineModules(Configuration cf, Function<String,ClassLoader> clf)通过将给定Configuration的模块定义到Java虚拟机,创建一个新模块层,将该层作为其父层。static ModuleLayer.ControllerModuleLayer. defineModules(Configuration cf, List<ModuleLayer> parentLayers, Function<String,ClassLoader> clf)通过将给定Configuration的模块定义到Java虚拟机来创建新模块层。ModuleLayerModuleLayer. defineModulesWithManyLoaders(Configuration cf, ClassLoader parentLoader)通过将给定Configuration的模块定义到Java虚拟机,创建一个新模块层,将该层作为其父层。static ModuleLayer.ControllerModuleLayer. defineModulesWithManyLoaders(Configuration cf, List<ModuleLayer> parentLayers, ClassLoader parentLoader)通过将给定Configuration的模块定义到Java虚拟机来创建新模块层。ModuleLayerModuleLayer. defineModulesWithOneLoader(Configuration cf, ClassLoader parentLoader)通过将给定Configuration的模块定义到Java虚拟机,创建一个新模块层,将该层作为其父层。static ModuleLayer.ControllerModuleLayer. 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 变量和类型 方法 描述 ConfigurationResolvedModule. configuration()返回此已解析模块所在的配置。static ConfigurationConfiguration. empty()返回 空配置。ConfigurationConfiguration. resolve(ModuleFinder before, ModuleFinder after, Collection<String> roots)解析一组根模块,以此配置作为其父模块,以创建新配置。static ConfigurationConfiguration. resolve(ModuleFinder before, List<Configuration> parents, ModuleFinder after, Collection<String> roots)解析根模块的集合以创建配置。ConfigurationConfiguration. resolveAndBind(ModuleFinder before, ModuleFinder after, Collection<String> roots)使用服务绑定解析一组根模块,并将此配置作为其父配置,以创建新配置。static ConfigurationConfiguration. 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 ConfigurationConfiguration. resolve(ModuleFinder before, List<Configuration> parents, ModuleFinder after, Collection<String> roots)解析根模块的集合以创建配置。static ConfigurationConfiguration. resolveAndBind(ModuleFinder before, List<Configuration> parents, ModuleFinder after, Collection<String> roots)使用服务绑定解析一组根模块,以创建配置。
-