Class FieldAttributeAppender.Factory.Compound
java.lang.Object
net.bytebuddy.implementation.attribute.FieldAttributeAppender.Factory.Compound
- All Implemented Interfaces:
FieldAttributeAppender.Factory
- Enclosing interface:
FieldAttributeAppender.Factory
@Enhance
public static class FieldAttributeAppender.Factory.Compound
extends Object
implements FieldAttributeAppender.Factory
A field attribute appender factory that combines several field attribute appender factories to be
represented as a single factory.
-
Nested Class Summary
Nested classes/interfaces inherited from interface FieldAttributeAppender.Factory
FieldAttributeAppender.Factory.Compound -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final List<FieldAttributeAppender.Factory> The factories that this compound factory represents in their application order. -
Constructor Summary
ConstructorsConstructorDescriptionCompound(List<? extends FieldAttributeAppender.Factory> factories) Creates a new compound field attribute appender factory.Compound(FieldAttributeAppender.Factory... factory) Creates a new compound field attribute appender factory. -
Method Summary
Modifier and TypeMethodDescriptionmake(TypeDescription typeDescription) Returns a field attribute appender that is applicable for a given type description.
-
Field Details
-
factories
The factories that this compound factory represents in their application order.
-
-
Constructor Details
-
Compound
Creates a new compound field attribute appender factory.- Parameters:
factory- The factories to represent in the order of their application.
-
Compound
Creates a new compound field attribute appender factory.- Parameters:
factories- The factories to represent in the order of their application.
-
-
Method Details
-
make
Returns a field attribute appender that is applicable for a given type description.- Specified by:
makein interfaceFieldAttributeAppender.Factory- Parameters:
typeDescription- The type for which a field attribute appender is to be applied for.- Returns:
- The field attribute appender which should be applied for the given type.
-