W3cubDocs

/OpenJDK 25

Interface LoadableConstantEntry

All Superinterfaces:
PoolEntry
All Known Subinterfaces:
ClassEntry, ConstantDynamicEntry, ConstantValueEntry, DoubleEntry, FloatEntry, IntegerEntry, LongEntry, MethodHandleEntry, MethodTypeEntry, StringEntry
public sealed interface LoadableConstantEntry extends PoolEntry permits ClassEntry, ConstantDynamicEntry, ConstantValueEntry, MethodHandleEntry, MethodTypeEntry
Marker interface for constant pool entries suitable for loading via the ldc instructions.

The use of a LoadableConstantEntry is modeled by a ConstantDesc. Conversions are through ConstantPoolBuilder.loadableConstantEntry(ConstantDesc) and constantValue().

See Java Virtual Machine Specification:
4.4 The Constant Pool
Sealed Class Hierarchy Graph:
Sealed class hierarchy graph for LoadableConstantEntrySealed class hierarchy graph for LoadableConstantEntry
Since:
24
See Also:

Field Summary

Method Summary

Modifier and Type Method Description
ConstantDesc constantValue()
Returns a symbolic descriptor of this constant.
default TypeKind typeKind()
Returns the data type of this constant.

Methods declared in interface PoolEntry

constantPool, index, tag, width

Method Details

constantValue

ConstantDesc constantValue()
Returns a symbolic descriptor of this constant.
Returns:
a symbolic descriptor of this constant
See Also:

typeKind

default TypeKind typeKind()
Returns the data type of this constant.

If the data type is of category 2, this constant must be loaded with ldc2_w; otherwise, the data type is of category 1, and this constant must be loaded with ldc or ldc_w.

Returns:
the data type of this constant

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