Attribute<ModuleTargetAttribute>, ClassElement, ClassFileElementpublic sealed interface ModuleTargetAttribute extends Attribute<ModuleTargetAttribute>, ClassElement
ModuleTarget attribute, which can appear on classes that represent module descriptors, to represent constraints on the target platform. The specification of the ModuleTarget attribute is:
TargetPlatform_attribute {
// index to CONSTANT_utf8_info structure in constant pool representing
// the string "ModuleTarget"
u2 attribute_name_index;
u4 attribute_length;
// index to CONSTANT_utf8_info structure with the target platform
u2 target_platform_index;
}
This attribute only appears on classes, and does not permit multiple instances in a class. It has a data dependency on the constant pool.
This attribute is not predefined in the Java SE Platform. This is a JDK-specific nonstandard attribute produced by the jdk.jlink module, which defines the jlink and jmod tools.
| Modifier and Type | Method | Description |
|---|---|---|
static ModuleTargetAttribute |
of |
Returns a ModuleTarget attribute. |
static ModuleTargetAttribute |
of |
Returns a ModuleTarget attribute. |
Utf8Entry |
targetPlatform() |
Returns the target platform. |
attributeMapper, attributeName
Utf8Entry targetPlatform()
static ModuleTargetAttribute of(String targetPlatform)
ModuleTarget attribute.targetPlatform - the target platformModuleTarget attributestatic ModuleTargetAttribute of(Utf8Entry targetPlatform)
ModuleTarget attribute.targetPlatform - the target platformModuleTarget attribute
© 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/ModuleTargetAttribute.html