Uses of Interface
net.bytebuddy.description.type.RecordComponentList
Packages that use RecordComponentList
Package
Description
Contains descriptions of Java types and packages.
This package contains helper types and implementations that are responsible for the actual writing of a byte array
representing a Java class.
Classes of this package allow for the creating
TypeDescription
s without
loading any classes.-
Uses of RecordComponentList in net.bytebuddy.description.type
Classes in net.bytebuddy.description.type that implement RecordComponentListModifier and TypeClassDescriptionstatic class
An abstract base implementation of a list of record components.static class
An empty list of record components.static class
A wrapper implementation of an explicit list of record components.static class
A list of loaded record components.static class
A list of record components described as tokens.static class
A type-substituting list of record component descriptions.Methods in net.bytebuddy.description.type that return RecordComponentListModifier and TypeMethodDescriptionRecordComponentList.AbstractBase.asDefined()
Returns this list of these record component descriptions resolved to their defined shape.RecordComponentList.asDefined()
Returns this list of these record component descriptions resolved to their defined shape.RecordComponentList.Empty.asDefined()
Returns this list of these record component descriptions resolved to their defined shape.TypeDefinition.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.AbstractBase.OfSimpleType.WithDelegation.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.ArrayProjection.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.ForLoadedType.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.ForPackageDescription.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.Generic.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.Generic.LazyProjection.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.Generic.OfGenericArray.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.Generic.OfNonGenericType.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.Generic.OfParameterizedType.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.Generic.OfTypeVariable.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.Generic.OfTypeVariable.Symbolic.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.Generic.OfWildcardType.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.Latent.getRecordComponents()
Returns the list of record components that are declared by this type.TypeDescription.SuperTypeLoading.getRecordComponents()
Returns the list of record components that are declared by this type.protected RecordComponentList
<S> -
Uses of RecordComponentList in net.bytebuddy.dynamic.scaffold
Fields in net.bytebuddy.dynamic.scaffold declared as RecordComponentListModifier and TypeFieldDescriptionprotected final RecordComponentList
<RecordComponentDescription.InDefinedShape> TypeWriter.Default.recordComponents
The instrumented type's record components.Methods in net.bytebuddy.dynamic.scaffold that return RecordComponentListModifier and TypeMethodDescriptionInstrumentedType.Default.getRecordComponents()
Returns the list of record components that are declared by this type.InstrumentedType.Frozen.getRecordComponents()
Returns the list of record components that are declared by this type.Constructors in net.bytebuddy.dynamic.scaffold with parameters of type RecordComponentListModifierConstructorDescriptionprotected
Default
(TypeDescription instrumentedType, ClassFileVersion classFileVersion, TypeWriter.FieldPool fieldPool, TypeWriter.RecordComponentPool recordComponentPool, List<? extends DynamicType> auxiliaryTypes, FieldList<FieldDescription.InDefinedShape> fields, MethodList<?> methods, MethodList<?> instrumentedMethods, RecordComponentList<RecordComponentDescription.InDefinedShape> recordComponents, LoadedTypeInitializer loadedTypeInitializer, TypeInitializer typeInitializer, TypeAttributeAppender typeAttributeAppender, AsmVisitorWrapper asmVisitorWrapper, AnnotationValueFilter.Factory annotationValueFilterFactory, AnnotationRetention annotationRetention, AuxiliaryType.NamingStrategy auxiliaryTypeNamingStrategy, Implementation.Context.Factory implementationContextFactory, TypeValidation typeValidation, AsmClassReader.Factory classReaderFactory, AsmClassWriter.Factory classWriterFactory, TypePool typePool) Creates a new default type writer.protected
ForCreation
(TypeDescription instrumentedType, ClassFileVersion classFileVersion, TypeWriter.FieldPool fieldPool, TypeWriter.MethodPool methodPool, TypeWriter.RecordComponentPool recordComponentPool, List<? extends DynamicType> auxiliaryTypes, FieldList<FieldDescription.InDefinedShape> fields, MethodList<?> methods, MethodList<?> instrumentedMethods, RecordComponentList<RecordComponentDescription.InDefinedShape> recordComponents, LoadedTypeInitializer loadedTypeInitializer, TypeInitializer typeInitializer, TypeAttributeAppender typeAttributeAppender, AsmVisitorWrapper asmVisitorWrapper, AnnotationValueFilter.Factory annotationValueFilterFactory, AnnotationRetention annotationRetention, AuxiliaryType.NamingStrategy auxiliaryTypeNamingStrategy, Implementation.Context.Factory implementationContextFactory, TypeValidation typeValidation, AsmClassReader.Factory classReaderFactory, AsmClassWriter.Factory classWriterFactory, TypePool typePool) Creates a new default type writer for creating a new type that is not based on an existing class file.protected
ForInlining
(TypeDescription instrumentedType, ClassFileVersion classFileVersion, TypeWriter.FieldPool fieldPool, TypeWriter.RecordComponentPool recordComponentPool, List<? extends DynamicType> auxiliaryTypes, FieldList<FieldDescription.InDefinedShape> fields, MethodList<?> methods, MethodList<?> instrumentedMethods, RecordComponentList<RecordComponentDescription.InDefinedShape> recordComponents, LoadedTypeInitializer loadedTypeInitializer, TypeInitializer typeInitializer, TypeAttributeAppender typeAttributeAppender, AsmVisitorWrapper asmVisitorWrapper, AnnotationValueFilter.Factory annotationValueFilterFactory, AnnotationRetention annotationRetention, AuxiliaryType.NamingStrategy auxiliaryTypeNamingStrategy, Implementation.Context.Factory implementationContextFactory, TypeValidation typeValidation, AsmClassReader.Factory classReaderFactory, AsmClassWriter.Factory classWriterFactory, TypePool typePool, TypeDescription originalType, ClassFileLocator classFileLocator) Creates a new inlining type writer.protected
WithFullProcessing
(TypeDescription instrumentedType, ClassFileVersion classFileVersion, TypeWriter.FieldPool fieldPool, TypeWriter.RecordComponentPool recordComponentPool, List<? extends DynamicType> auxiliaryTypes, FieldList<FieldDescription.InDefinedShape> fields, MethodList<?> methods, MethodList<?> instrumentedMethods, RecordComponentList<RecordComponentDescription.InDefinedShape> recordComponents, LoadedTypeInitializer loadedTypeInitializer, TypeInitializer typeInitializer, TypeAttributeAppender typeAttributeAppender, AsmVisitorWrapper asmVisitorWrapper, AnnotationValueFilter.Factory annotationValueFilterFactory, AnnotationRetention annotationRetention, AuxiliaryType.NamingStrategy auxiliaryTypeNamingStrategy, Implementation.Context.Factory implementationContextFactory, TypeValidation typeValidation, AsmClassReader.Factory classReaderFactory, AsmClassWriter.Factory classWriterFactory, TypePool typePool, TypeDescription originalType, ClassFileLocator classFileLocator, MethodRegistry.Prepared methodRegistry, Implementation.Target.Factory implementationTargetFactory, MethodRebaseResolver methodRebaseResolver) Creates a new inlining type writer that fully reprocesses a type. -
Uses of RecordComponentList in net.bytebuddy.pool
Classes in net.bytebuddy.pool that implement RecordComponentListModifier and TypeClassDescriptionprotected class
A list of record component tokens representing each record component as a description.Methods in net.bytebuddy.pool that return RecordComponentListModifier and TypeMethodDescriptionTypePool.Default.LazyTypeDescription.getRecordComponents()
Returns the list of record components that are declared by this type.