Uses of Enum
net.bytebuddy.implementation.MethodAccessorFactory.AccessType
Packages that use MethodAccessorFactory.AccessType
Package
Description
The implementation package contains any logic for intercepting method calls.
-
Uses of MethodAccessorFactory.AccessType in net.bytebuddy.implementation
Subclasses with type arguments of type MethodAccessorFactory.AccessType in net.bytebuddy.implementationModifier and TypeClassDescriptionstatic enumIndicates the type of access to an accessor method.Methods in net.bytebuddy.implementation that return MethodAccessorFactory.AccessTypeModifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static MethodAccessorFactory.AccessType[]MethodAccessorFactory.AccessType.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in net.bytebuddy.implementation with parameters of type MethodAccessorFactory.AccessTypeModifier and TypeMethodDescriptionImplementation.Context.Default.registerAccessorFor(Implementation.SpecialMethodInvocation specialMethodInvocation, MethodAccessorFactory.AccessType accessType) Registers an accessor method for aImplementation.SpecialMethodInvocationwhich cannot itself be triggered invoked directly from outside a type.Implementation.Context.Disabled.registerAccessorFor(Implementation.SpecialMethodInvocation specialMethodInvocation, MethodAccessorFactory.AccessType accessType) Registers an accessor method for aImplementation.SpecialMethodInvocationwhich cannot itself be triggered invoked directly from outside a type.MethodAccessorFactory.Illegal.registerAccessorFor(Implementation.SpecialMethodInvocation specialMethodInvocation, MethodAccessorFactory.AccessType accessType) Registers an accessor method for aImplementation.SpecialMethodInvocationwhich cannot itself be triggered invoked directly from outside a type.MethodAccessorFactory.registerAccessorFor(Implementation.SpecialMethodInvocation specialMethodInvocation, MethodAccessorFactory.AccessType accessType) Registers an accessor method for aImplementation.SpecialMethodInvocationwhich cannot itself be triggered invoked directly from outside a type.Implementation.Context.Default.registerGetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType) Registers a getter for the givenFieldDescriptionwhich might itself not be accessible from outside the class.Implementation.Context.Disabled.registerGetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType) Registers a getter for the givenFieldDescriptionwhich might itself not be accessible from outside the class.MethodAccessorFactory.Illegal.registerGetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType) Registers a getter for the givenFieldDescriptionwhich might itself not be accessible from outside the class.MethodAccessorFactory.registerGetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType) Registers a getter for the givenFieldDescriptionwhich might itself not be accessible from outside the class.Implementation.Context.Default.registerSetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType) Registers a setter for the givenFieldDescriptionwhich might itself not be accessible from outside the class.Implementation.Context.Disabled.registerSetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType) Registers a setter for the givenFieldDescriptionwhich might itself not be accessible from outside the class.MethodAccessorFactory.Illegal.registerSetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType) Registers a setter for the givenFieldDescriptionwhich might itself not be accessible from outside the class.MethodAccessorFactory.registerSetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType) Registers a setter for the givenFieldDescriptionwhich might itself not be accessible from outside the class.Implementation.Context.Default.AccessorMethodDelegation.with(MethodAccessorFactory.AccessType accessType) protected abstract Implementation.Context.Default.DelegationRecordImplementation.Context.Default.DelegationRecord.with(MethodAccessorFactory.AccessType accessType) Returns this delegation record with the minimal visibility represented by the supplied access type.Implementation.Context.Default.FieldGetterDelegation.with(MethodAccessorFactory.AccessType accessType) Implementation.Context.Default.FieldSetterDelegation.with(MethodAccessorFactory.AccessType accessType) Constructors in net.bytebuddy.implementation with parameters of type MethodAccessorFactory.AccessTypeModifierConstructorDescriptionprotectedAccessorMethodDelegation(TypeDescription instrumentedType, String suffix, MethodAccessorFactory.AccessType accessType, Implementation.SpecialMethodInvocation specialMethodInvocation) Creates a delegation to an accessor method.protectedFieldGetterDelegation(TypeDescription instrumentedType, String suffix, MethodAccessorFactory.AccessType accessType, FieldDescription fieldDescription) Creates a new field getter implementation.protectedFieldSetterDelegation(TypeDescription instrumentedType, String suffix, MethodAccessorFactory.AccessType accessType, FieldDescription fieldDescription) Creates a new field setter implementation.