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