Uses of Interface
java.lang.classfile.AttributeMapper
Packages that use AttributeMapper
Package
Description
Provides classfile parsing, generation, and transformation library.
-
Uses of AttributeMapper in java.lang.classfile
Methods in java.lang.classfile that return AttributeMapperModifier and TypeMethodDescriptionAttributes.annotationDefault()
Returns the mapper for theAnnotationDefault
attribute.Attribute.attributeMapper()
Returns theAttributeMapper
associated with this attribute.final AttributeMapper
<T> CustomAttribute.attributeMapper()
Attributes.bootstrapMethods()
Returns the mapper for theBootstrapMethods
attribute.Attributes.characterRangeTable()
Returns the mapper for theCharacterRangeTable
attribute.static AttributeMapper
<CodeAttribute> Attributes.code()
Returns the mapper for theCode
attribute.Attributes.compilationId()
Returns the mapper for theCompilationID
attribute.Attributes.constantValue()
Returns the mapper for theConstantValue
attribute.static AttributeMapper
<DeprecatedAttribute> Attributes.deprecated()
Returns the mapper for theDeprecated
attribute.Attributes.enclosingMethod()
Returns the mapper for theEnclosingMethod
attribute.static AttributeMapper
<ExceptionsAttribute> Attributes.exceptions()
Returns the mapper for theExceptions
attribute.static AttributeMapper
<InnerClassesAttribute> Attributes.innerClasses()
Returns the mapper for theInnerClasses
attribute.Attributes.lineNumberTable()
Returns the mapper for theLineNumberTable
attribute.Attributes.localVariableTable()
Returns the mapper for theLocalVariableTable
attribute.Attributes.localVariableTypeTable()
Returns the mapper for theLocalVariableTypeTable
attribute.Attributes.methodParameters()
Returns the mapper for theMethodParameters
attribute.static AttributeMapper
<ModuleAttribute> Attributes.module()
Returns the mapper for theModule
attribute.static AttributeMapper
<ModuleHashesAttribute> Attributes.moduleHashes()
Returns the mapper for theModuleHashes
attribute.Attributes.moduleMainClass()
Returns the mapper for theModuleMainClass
attribute.Attributes.modulePackages()
Returns the mapper for theModulePackages
attribute.Attributes.moduleResolution()
Returns the mapper for theModuleResolution
attribute.static AttributeMapper
<ModuleTargetAttribute> Attributes.moduleTarget()
Returns the mapper for theModuleTarget
attribute.static AttributeMapper
<NestHostAttribute> Attributes.nestHost()
Returns the mapper for theNestHost
attribute.static AttributeMapper
<NestMembersAttribute> Attributes.nestMembers()
Returns the mapper for theNestMembers
attribute.Attributes.permittedSubclasses()
Returns the mapper for thePermittedSubclasses
attribute.static AttributeMapper
<RecordAttribute> Attributes.record()
Returns the mapper for theRecord
attribute.Attributes.runtimeInvisibleAnnotations()
Returns the mapper for theRuntimeInvisibleAnnotations
attribute.Attributes.runtimeInvisibleParameterAnnotations()
Returns the mapper for theRuntimeInvisibleParameterAnnotations
attribute.Attributes.runtimeInvisibleTypeAnnotations()
Returns the mapper for theRuntimeInvisibleTypeAnnotations
attribute.Attributes.runtimeVisibleAnnotations()
Returns the mapper for theRuntimeVisibleAnnotations
attribute.Attributes.runtimeVisibleParameterAnnotations()
Returns the mapper for theRuntimeVisibleParameterAnnotations
attribute.Attributes.runtimeVisibleTypeAnnotations()
Returns the mapper for theRuntimeVisibleTypeAnnotations
attribute.static AttributeMapper
<SignatureAttribute> Attributes.signature()
Returns the mapper for theSignature
attribute.Attributes.sourceDebugExtension()
Returns the mapper for theSourceDebugExtension
attribute.static AttributeMapper
<SourceFileAttribute> Attributes.sourceFile()
Returns the mapper for theSourceFile
attribute.static AttributeMapper
<SourceIDAttribute> Attributes.sourceId()
Returns the mapper for theSourceID
attribute.Attributes.stackMapTable()
Returns the mapper for theStackMapTable
attribute.static AttributeMapper
<SyntheticAttribute> Attributes.synthetic()
Returns the mapper for theSynthetic
attribute.Methods in java.lang.classfile that return types with arguments of type AttributeMapperModifier and TypeMethodDescriptionClassFile.AttributeMapperOption.attributeMapper()
Returns the function mapping attribute names to attribute mappers.ClassReader.customAttributes()
Returns the table of custom attribute mappers.Methods in java.lang.classfile with parameters of type AttributeMapperModifier and TypeMethodDescriptionAttributedElement.findAttribute
(AttributeMapper<T> attr) Finds an attribute by name.AttributedElement.findAttributes
(AttributeMapper<T> attr) Finds attributes by name.Method parameters in java.lang.classfile with type arguments of type AttributeMapperModifier and TypeMethodDescriptionClassFile.AttributeMapperOption.of
(Function<Utf8Entry, AttributeMapper<?>> attributeMapper) Returns an option describing user-defined attributes for parsing.Constructors in java.lang.classfile with parameters of type AttributeMapperModifierConstructorDescriptionprotected
CustomAttribute
(AttributeMapper<T> mapper) Constructor for subclasses to call.