Serializable, ClassFile.Option, Comparable<ClassFile.DeadLabelsOption>, ConstableClassFilepublic static enum ClassFile.DeadLabelsOption extends Enum<ClassFile.DeadLabelsOption> implements ClassFile.Option
FAIL_ON_DEAD_LABELS to fail fast with an IllegalArgumentException when a PseudoInstruction refers to an unbound label during bytecode generation. The affected PseudoInstructions include ExceptionCatch, LocalVariable, LocalVariableType, and CharacterRange. Setting this option to DROP_DEAD_LABELS filters these pseudo-instructions from a CodeBuilder instead. Note that instructions, such as BranchInstruction, with unbound labels always fail-fast with an IllegalArgumentException.
Enum.EnumDesc<E>
| Enum Constant | Description |
|---|---|
DROP_DEAD_LABELS |
Filter PseudoInstructions with unbound labels. |
FAIL_ON_DEAD_LABELS |
Fail fast on unbound labels. |
| Modifier and Type | Method | Description |
|---|---|---|
static ClassFile.DeadLabelsOption |
valueOf |
Returns the enum constant of this class with the specified name. |
static ClassFile.DeadLabelsOption[] |
values() |
Returns an array containing the constants of this enum class, in the order they are declared. |
public static final ClassFile.DeadLabelsOption FAIL_ON_DEAD_LABELS
class files.public static final ClassFile.DeadLabelsOption DROP_DEAD_LABELS
PseudoInstructions with unbound labels. Note that instructions with unbound labels still cause an IllegalArgumentException.public static ClassFile.DeadLabelsOption[] values()
public static ClassFile.DeadLabelsOption valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null
© 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/ClassFile.DeadLabelsOption.html