ClassFileElement, CodeElement, PseudoInstructionpublic sealed interface LineNumber extends PseudoInstruction
Code attribute. This models a single entry in the LineNumberTable attribute. Delivered as a CodeElement during traversal of the elements of a CodeModel, according to the setting of the ClassFile.LineNumbersOption option. A line number entry is composite:
Another model, LineNumberInfo, also models a line number entry; it has no dependency on a CodeModel and represents of bci values as ints instead of order of pseudo-instructions in the elements of a CodeModel, and is used as components of a LineNumberTableAttribute.
| Modifier and Type | Method | Description |
|---|---|---|
int |
line() |
Returns the line number. |
static LineNumber |
of |
Returns a line number pseudo-instruction. |
int line()
static LineNumber of(int line)
line - the line number
© 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/instruction/LineNumber.html