インタフェース java.lang.module.ModuleFinderの
使用
| パッケージ | 説明 |
|---|---|
| java.lang.module |
モジュール記述子をサポートし、解決とサービス・バインディングによってモジュールの構成を作成するクラス。
|
-
java.lang.moduleでのModuleFinderの使用
ModuleFinderを戻すjava.lang.moduleのメソッド 修飾子と型 メソッド 説明 static ModuleFinderModuleFinder. compose(ModuleFinder... finders)0個以上のモジュール・ファインダのシーケンスから構成されるモジュール・ファインダを返します。static ModuleFinderModuleFinder. of(Path... entries)一連のディレクトリおよび/またはパッケージ化されたモジュールを検索して、ファイル・システム上のモジュールを見つけるモジュール・ファインダを返します。static ModuleFinderModuleFinder. ofSystem()「システム・モジュール」を見つけるモジュール・ファインダを返します。型ModuleFinderのパラメータを持つjava.lang.moduleのメソッド 修飾子と型 メソッド 説明 static ModuleFinderModuleFinder. compose(ModuleFinder... finders)0個以上のモジュール・ファインダのシーケンスから構成されるモジュール・ファインダを返します。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)サービス・バインディングを使用してルート・モジュールの集合を解決し、構成を作成します。