Package | Description |
---|---|
net.bytebuddy.implementation |
The implementation package contains any logic for intercepting method calls.
|
Modifier and Type | Interface and Description |
---|---|
static interface |
FieldAccessor.OwnerTypeLocatable
A field accessor that can be configured to locate a field in a specific manner.
|
Modifier and Type | Class and Description |
---|---|
protected static class |
FieldAccessor.ForImplicitProperty
A field accessor for an implicit property where a getter or setter property is inferred from the signature.
|
Modifier and Type | Method and Description |
---|---|
FieldAccessor.AssignerConfigurable |
FieldAccessor.OwnerTypeLocatable.in(Class<?> type)
Determines that a field should only be considered when it was defined in a given type.
|
FieldAccessor.AssignerConfigurable |
FieldAccessor.ForImplicitProperty.in(Class<?> type)
Determines that a field should only be considered when it was defined in a given type.
|
FieldAccessor.AssignerConfigurable |
FieldAccessor.OwnerTypeLocatable.in(FieldLocator.Factory fieldLocatorFactory)
Determines that a field should only be considered when it was identified by a field locator that is
produced by the given factory.
|
FieldAccessor.AssignerConfigurable |
FieldAccessor.ForImplicitProperty.in(FieldLocator.Factory fieldLocatorFactory)
Determines that a field should only be considered when it was identified by a field locator that is
produced by the given factory.
|
FieldAccessor.AssignerConfigurable |
FieldAccessor.OwnerTypeLocatable.in(TypeDescription typeDescription)
Determines that a field should only be considered when it was defined in a given type.
|
FieldAccessor.AssignerConfigurable |
FieldAccessor.ForImplicitProperty.in(TypeDescription typeDescription)
Determines that a field should only be considered when it was defined in a given type.
|
static FieldAccessor.AssignerConfigurable |
FieldAccessor.of(Field field)
Defines a field accessor where the specified field is accessed.
|
static FieldAccessor.AssignerConfigurable |
FieldAccessor.of(FieldDescription fieldDescription)
Defines a field accessor where the specified field is accessed.
|
Copyright © 2014–2020. All rights reserved.