W3cubDocs

/OpenJDK 25

Interface AnnotationConstantValueEntry

All Superinterfaces:
PoolEntry
All Known Subinterfaces:
DoubleEntry, FloatEntry, IntegerEntry, LongEntry, Utf8Entry
public sealed interface AnnotationConstantValueEntry extends PoolEntry permits DoubleEntry, FloatEntry, IntegerEntry, LongEntry, Utf8Entry
Marker interface for constant pool entries that can represent constant values associated with elements of annotations. They are also the only entries that do not refer to other constant pool entries.
API Note:
An annotation constant value entry alone is not sufficient to determine the annotation constant; for example, an IntegerEntry of 1 can mean true in AnnotationValue.OfBoolean or 1 in AnnotationValue.OfInt.
See Java Virtual Machine Specification:
4.7.16.1 The element_value structure
Sealed Class Hierarchy Graph:
Sealed class hierarchy graph for AnnotationConstantValueEntrySealed class hierarchy graph for AnnotationConstantValueEntry
Since:
24
See Also:

Field Summary

Method Summary

Modifier and Type Method Description
ConstantDesc constantValue()
Returns the constant value.

Methods declared in interface PoolEntry

constantPool, index, tag, width

Method Details

constantValue

ConstantDesc constantValue()
Returns the constant value. The constant value will be an Integer, Long, Float, Double for the primitive constants, or String for UTF8 constants.
Returns:
the constant value

© 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/constantpool/AnnotationConstantValueEntry.html