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