W3cubDocs

/OpenJDK 25

Interface LongEntry

All Superinterfaces:
AnnotationConstantValueEntry, ConstantValueEntry, LoadableConstantEntry, PoolEntry
public sealed interface LongEntry extends AnnotationConstantValueEntry, ConstantValueEntry
Models a CONSTANT_Long_info structure, or a long constant, in the constant pool of a class file.

The use of a LongEntry is modeled by a long. Conversions are through ConstantPoolBuilder.longEntry(long) and longValue().

A long entry has a width of 2, making its subsequent constant pool index valid and unusable.

See Java Virtual Machine Specification:
4.4.5 The CONSTANT_Long_info and CONSTANT_Double_info Structures
Since:
24
See Also:

Field Summary

Method Summary

Modifier and Type Method Description
long longValue()
Returns the long value.
default TypeKind typeKind()
Returns the type of the constant.

Methods declared in interface AnnotationConstantValueEntry

constantValue

Methods declared in interface ConstantValueEntry

constantValue

Methods declared in interface PoolEntry

constantPool, index, tag, width

Method Details

longValue

long longValue()
Returns the long value.
Returns:
the long value
See Also:

typeKind

default TypeKind typeKind()
Returns the type of the constant.
Specified by:
typeKind in interface LoadableConstantEntry
Returns:
the type of the 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/LongEntry.html