ClassFileElement, CodeElement, PseudoInstructionpublic sealed interface LocalVariableType extends PseudoInstruction
LocalVariableTypeTable attribute. Delivered as a CodeElement during traversal of the elements of a CodeModel, according to the setting of the ClassFile.DebugElementsOption option. A local variable type entry is composite:
LocalVariableType(
int slot,
String name,
Signature signature,
Label startScope,
Label endScope
)
slot is within [0, 65535]. Another model, LocalVariableTypeInfo, also models a local variable type entry; it has no dependency on a CodeModel and represents of bci values as ints instead of Labels, and is used as components of a LocalVariableTypeTableAttribute.
LocalVariableType is used if a local variable has a parameterized type, a type argument, or an array type of one of the previous types as its type. A LocalVariable with the erased type should still be created for that local variable.| Modifier and Type | Method | Description |
|---|---|---|
Label |
endScope() |
Returns the end range of the local variable scope. |
Utf8Entry |
name() |
Returns the local variable name. |
static LocalVariableType |
of |
Returns a local variable type pseudo-instruction. |
static LocalVariableType |
of |
Returns a local variable type pseudo-instruction. |
Utf8Entry |
signature() |
Returns the local variable generic signature string. |
default Signature |
signatureSymbol() |
Returns the local variable generic signature. |
int |
slot() |
Returns the local variable slot. |
Label |
startScope() |
Returns the start range of the local variable scope. |
int slot()
[0, 65535].Utf8Entry name()
Utf8Entry signature()
signatureSymbol().default Signature signatureSymbol()
Label startScope()
Label endScope()
static LocalVariableType of(int slot, Utf8Entry nameEntry, Utf8Entry signatureEntry, Label startScope, Label endScope)
slot must be within [0, 65535].slot - the local variable slotnameEntry - the local variable namesignatureEntry - the local variable signaturestartScope - the start range of the local variable scopeendScope - the end range of the local variable scopeIllegalArgumentException - if slot is out of rangestatic LocalVariableType of(int slot, String name, Signature signature, Label startScope, Label endScope)
slot must be within [0, 65535].slot - the local variable slotname - the local variable namesignature - the local variable signaturestartScope - the start range of the local variable scopeendScope - the end range of the local variable scopeIllegalArgumentException - if slot is out of range
© 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/LocalVariableType.html