Serializable, ClassFile.Option, Comparable<ClassFile.AttributesProcessingOption>, ConstableClassFilepublic static enum ClassFile.AttributesProcessingOption extends Enum<ClassFile.AttributesProcessingOption> implements ClassFile.Option
PASS_ALL_ATTRIBUTES to retain all attributes as-is. Many attributes only depend on data managed by the Class-File API, such as constant pool entries or labels into the code array. If they change, the Class-File API knows their updated values and can write a correct version by expanding the structures and recomputing the updated indexes, known as "explosion". However, some attributes, such as type annotations, depend on arbitrary data that may be modified during transformations but the Class-File API does not track, such as index to an entry in the interfaces of a ClassFile structure. As a result, the Class-File API cannot verify the correctness of such information.
Enum.EnumDesc<E>
| Enum Constant | Description |
|---|---|
DROP_UNKNOWN_ATTRIBUTES |
Drop attributes with AttributeMapper.AttributeStability.UNKNOWN data dependency during transformation. |
DROP_UNSTABLE_ATTRIBUTES |
Drop attributes with AttributeMapper.AttributeStability.UNSTABLE or higher data dependency during transformation. |
PASS_ALL_ATTRIBUTES |
Retain all original attributes during transformation. |
| Modifier and Type | Method | Description |
|---|---|---|
static ClassFile.AttributesProcessingOption |
valueOf |
Returns the enum constant of this class with the specified name. |
static ClassFile.AttributesProcessingOption[] |
values() |
Returns an array containing the constants of this enum class, in the order they are declared. |
public static final ClassFile.AttributesProcessingOption PASS_ALL_ATTRIBUTES
public static final ClassFile.AttributesProcessingOption DROP_UNKNOWN_ATTRIBUTES
AttributeMapper.AttributeStability.UNKNOWN data dependency during transformation.public static final ClassFile.AttributesProcessingOption DROP_UNSTABLE_ATTRIBUTES
AttributeMapper.AttributeStability.UNSTABLE or higher data dependency during transformation.public static ClassFile.AttributesProcessingOption[] values()
public static ClassFile.AttributesProcessingOption 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.AttributesProcessingOption.html