Uses of Interface
java.lang.classfile.ClassFileElement
Packages that use ClassFileElement
Package
Description
Provides classfile parsing, generation, and transformation library.
Provides interfaces describing
class
file attributes for the java.lang.classfile
library.Provides interfaces describing code instructions for the
java.lang.classfile
library.-
Uses of ClassFileElement in java.lang.classfile
Classes in java.lang.classfile with type parameters of type ClassFileElementModifier and TypeInterfaceDescriptioninterface
ClassFileBuilder<E extends ClassFileElement, B extends ClassFileBuilder<E,
B>> A builder for aCompoundElement
, which accepts the member elements to be integrated into the built structure.interface
ClassFileTransform<C extends ClassFileTransform<C,
E, B>, E extends ClassFileElement, B extends ClassFileBuilder<E, B>> A transformation on aCompoundElement
by processing its individual member elements and sending the results to aClassFileBuilder
, throughClassFileBuilder.transform(java.lang.classfile.CompoundElement<E>, java.lang.classfile.ClassFileTransform<?, E, B>)
.interface
CompoundElement<E extends ClassFileElement>
Aclass
file structure that can be viewed as a composition of its member structures.Subinterfaces of ClassFileElement in java.lang.classfileModifier and TypeInterfaceDescriptioninterface
Models the access flags for a class, method, or field.interface
Models an attribute (JVMS 4.7) in theclass
file format.interface
AClassFileElement
describing aclass
file structure that has attributes, such as aclass
file, a field, a method, aCode
attribute, or a record component.interface
Marker interface for a member element of aClassModel
.interface
Models the minor and major version numbers of aclass
file (JVMS 4.1).interface
Models aclass
file.interface
Marker interface for a member element of aCodeModel
.interface
Models the body of a method (theCode
attribute).interface
CompoundElement<E extends ClassFileElement>
Aclass
file structure that can be viewed as a composition of its member structures.interface
Marker interface for a member element of aFieldModel
.interface
Models a field.interface
Models an executable instruction in thecode
array of theCode
attribute of a method.interface
Models the interfaces (JVMS 4.1) of a class.interface
Marker interface for a member element of aMethodModel
.interface
Models a method.interface
interface
Models the superclass (JVMS 4.1) of a class.Classes in java.lang.classfile that implement ClassFileElementModifier and TypeClassDescriptionclass
CustomAttribute<T extends CustomAttribute<T>>
Models a user-defined attribute in aclass
file. -
Uses of ClassFileElement in java.lang.classfile.attribute
Subinterfaces of ClassFileElement in java.lang.classfile.attributeModifier and TypeInterfaceDescriptioninterface
Models theAnnotationDefault
attribute (JVMS 4.7.22), which records the default value (JLS 9.6.2) for the annotation interface element defined by this method.interface
Models theBootstrapMethods
attribute (JVMS 4.7.23), which stores symbolic information for the execution of bootstrap methods, used by dynamically-computed call sites and constants.interface
Models theCharacterRangeTable
attribute, which is a bidirectional mapping from ranges of positions in the source file to ranges of indices into thecode
array.interface
interface
Models theCompilationID
attribute, which records the compilation time of theclass
file.interface
Models theConstantValue
attribute (JVMS 4.7.2), which indicates this field's value is a constant and that constant value.interface
Models theDeprecated
attribute (JVMS 4.7.15), which indicates this structure has been superseded.interface
Models theEnclosingMethod
attribute (JVMS 4.7.7), which indicates that this class is a local or anonymous class, and indicates the enclosing method or constructor of this class if this class is enclosed in exactly one method or constructor.interface
Models theExceptions
attribute (JVMS 4.7.5), which records the exceptions declared to be thrown by this method.interface
Models theInnerClasses
attribute (JVMS 4.7.6), which records which classes referenced by thisclass
file are nested classes.interface
Models theLineNumberTable
attribute (JVMS 4.7.12), which records the mapping between indexes into thecode
array and line numbers in the source file.interface
Models theLocalVariableTable
attribute (JVMS 4.7.13), which records debug information about local variables.interface
Models theLocalVariableTypeTable
attribute (JVMS 4.7.14), which records debug information about local variables with generic types.interface
Models theMethodParameters
attribute (JVMS 4.7.24), which records reflective information about this method's parameters such as access modifiers.interface
interface
Models theModuleHashes
attribute, which appears on classes that represent module descriptors to capture the hashes of a set of co-delivered modules.interface
Models theModuleMainClass
attribute (JVMS 4.7.27), which appears on classes that represent module descriptors to indicate the main class of the module.interface
Models theModulePackages
attribute (JVMS 4.7.26), which can appear on classes that represent module descriptors to indicate packages in the module used by the module descriptor.interface
Models theModuleResolution
attribute, which can appear on classes that represent module descriptors, to capture resolution metadata for modules.interface
Models theModuleTarget
attribute, which can appear on classes that represent module descriptors, to represent constraints on the target platform.interface
interface
Models theNestMembers
attribute (JVMS 4.7.29), which indicates that this class is the host of a nest and the other nest members.interface
Models thePermittedSubclasses
attribute (JVMS 4.7.31), which indicates this class or interface is sealed, and which classes or interfaces may extend or implement this class or interface.interface
interface
Models a single record component in theRecordAttribute
.interface
Models theRuntimeInvisibleAnnotations
attribute (JVMS 4.7.17), which stores declaration annotations on this structure that are visible toclass
file consumers but are not visible to core reflection.interface
Models theRuntimeInvisibleParameterAnnotations
attribute (JVMS 4.7.19), which stores declaration annotations on the method parameters of this method that are visible toclass
file consumers but are not visible to core reflection.interface
Models theRuntimeInvisibleTypeAnnotations
attribute (JVMS 4.7.21), which stores type-use annotations for the annotated uses of types in this structure that are visible toclass
file consumers but are not visible to core reflection.interface
Models theRuntimeVisibleAnnotations
attribute (JVMS 4.7.16), which stores declaration annotations on this structure that are visible to bothclass
file consumers and core reflection.interface
Models theRuntimeVisibleParameterAnnotations
attribute (JVMS 4.7.18), which stores declaration annotations on the method parameters of this method that are visible to bothclass
file consumers and core reflection.interface
Models theRuntimeVisibleTypeAnnotations
attribute (JVMS 4.7.20), which stores type-use annotations for the annotated uses of types in this structure that are visible to bothclass
file consumers and core reflection.interface
interface
Models theSourceDebugExtension
attribute (JVMS 4.7.11), which stores arbitrary modified UTF-8 data.interface
Models theSourceFile
attribute (JVMS 4.7.10), which indicates the name of the source file from which thisclass
file was compiled.interface
Models theSourceID
attribute, which records the last modified time of the source file from which thisclass
file was compiled.interface
Models theStackMapTable
attribute (JVMS 4.7.4), which is used for verification by type checking (4.10.1).interface
interface
Models an unknown attribute read from aclass
file. -
Uses of ClassFileElement in java.lang.classfile.instruction
Subinterfaces of ClassFileElement in java.lang.classfile.instructionModifier and TypeInterfaceDescriptioninterface
Models an array load instruction in thecode
array of aCode
attribute.interface
Models an array store instruction in thecode
array of aCode
attribute.interface
Models a branching instruction (conditional or unconditional) in thecode
array of aCode
attribute.interface
A pseudo-instruction which models a single entry in theCharacterRangeTable
attribute.interface
Models a constant-load instruction in thecode
array of aCode
attribute, including "intrinsic", "argument", and "load" constant instructions.static interface
Models an "argument constant" instruction, which encodes the constant value in the instruction directly.static interface
Models an "intrinsic constant" instruction, which encodes the constant value in its opcode.static interface
Models a "load constant" instruction, which encodes the constant value in the constant pool.interface
interface
Marker interface for instruction discontinued from thecode
array of aCode
attribute.static interface
static interface
interface
A pseudo-instruction modeling an entry in theexception_table
array of aCode
attribute.interface
Models a field access instruction in thecode
array of aCode
attribute.interface
Models a local variable increment instruction in thecode
array of aCode
attribute.interface
Models a dynamically-computed call site invocation instruction in thecode
array of aCode
attribute.interface
Models a method invocation instruction in thecode
array of aCode
attribute, other thaninvokedynamic
.interface
A pseudo-instruction which indicates that the specified label corresponds to the current position in theCode
attribute.interface
A pseudo-instruction which indicates the code for a given line number starts after the current position in aCode
attribute.interface
Models a local variable load instruction in thecode
array of aCode
attribute.interface
A pseudo-instruction which models a single entry in theLocalVariableTable
attribute.interface
A pseudo-instruction which models a single entry in theLocalVariableTypeTable
attribute.interface
interface
interface
interface
interface
interface
interface
interface
Models an arithmetic operator instruction in thecode
array of aCode
attribute.interface
Models a return-from-method instruction in thecode
array of aCode
attribute.interface
Models a stack manipulation instruction in thecode
array of aCode
attribute.interface
Models a local variable store instruction in thecode
array of aCode
attribute.interface
interface
interface