W3cubDocs

/OpenJDK 25

Interface ModuleProvideInfo

public sealed interface ModuleProvideInfo
Models a single "provides" declaration in the ModuleAttribute.
See Java Virtual Machine Specification:
4.7.25 The Module Attribute
Since:
24
See Also:

Method Summary

Modifier and Type Method Description
static ModuleProvideInfo of(ClassEntry provides, ClassEntry... providesWith)
Returns a service provision description.
static ModuleProvideInfo of(ClassEntry provides, List<ClassEntry> providesWith)
Returns a service provision description.
static ModuleProvideInfo of(ClassDesc provides, ClassDesc... providesWith)
Returns a service provision description.
static ModuleProvideInfo of(ClassDesc provides, List<ClassDesc> providesWith)
Returns a service provision description.
ClassEntry provides()
Returns the service interface representing the provided service.
List<ClassEntry> providesWith()
Returns the classes providing the service implementation.

Method Details

provides

ClassEntry provides()
Returns the service interface representing the provided service.
Returns:
the service interface representing the provided service
See Also:

providesWith

List<ClassEntry> providesWith()
Returns the classes providing the service implementation. The list should not be empty.
Returns:
the classes providing the service implementation
See Also:

of

static ModuleProvideInfo of(ClassEntry provides, List<ClassEntry> providesWith)
Returns a service provision description.
Parameters:
provides - the service class interface
providesWith - the service class implementations, must not be empty
Returns:
a service provision description

of

static ModuleProvideInfo of(ClassEntry provides, ClassEntry... providesWith)
Returns a service provision description.
Parameters:
provides - the service class interface
providesWith - the service class implementations, must not be empty
Returns:
a service provision description

of

static ModuleProvideInfo of(ClassDesc provides, List<ClassDesc> providesWith)
Returns a service provision description.
Parameters:
provides - the service class interface
providesWith - the service class implementations, must not be empty
Returns:
a service provision description
Throws:
IllegalArgumentException - if provides or any of providesWith represents a primitive type

of

static ModuleProvideInfo of(ClassDesc provides, ClassDesc... providesWith)
Returns a service provision description.
Parameters:
provides - the service class interface
providesWith - the service class implementations, must not be empty
Returns:
a service provision description
Throws:
IllegalArgumentException - if provides or any of providesWith represents a primitive type

© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/classfile/attribute/ModuleProvideInfo.html