W3cubDocs

/OpenJDK 25

Interface CompilationIDAttribute

All Superinterfaces:
Attribute<CompilationIDAttribute>, ClassElement, ClassFileElement
public sealed interface CompilationIDAttribute extends Attribute<CompilationIDAttribute>, ClassElement
Models the CompilationID attribute, which records the compilation time of the class file.

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 reference implementation of the system Java compiler, defined by the jdk.compiler module.

Since:
24
See Also:

Method Summary

Modifier and Type Method Description
Utf8Entry compilationId()
Returns the compilation ID.
static CompilationIDAttribute of(Utf8Entry id)
Returns a CompilationID attribute.
static CompilationIDAttribute of(String id)
Returns a CompilationID attribute.

Methods declared in interface Attribute

attributeMapper, attributeName

Method Details

compilationId

Utf8Entry compilationId()
Returns the compilation ID. The compilation ID is the string value of System.currentTimeMillis() when the class file is generated.
Returns:
the compilation ID

of

static CompilationIDAttribute of(Utf8Entry id)
Returns a CompilationID attribute.
Parameters:
id - the compilation ID
Returns:
a CompilationID attribute

of

static CompilationIDAttribute of(String id)
Returns a CompilationID attribute.
Parameters:
id - the compilation ID
Returns:
a CompilationID 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/CompilationIDAttribute.html