Class DynamicType.Builder.MethodDefinition.ParameterDefinition.Simple.Annotatable.AbstractBase.Adapter<X>

Type Parameters:
X - A loaded type that the built type is guaranteed to be a subclass of.
All Implemented Interfaces:
DynamicType.Builder.MethodDefinition.ExceptionDefinition<X>, DynamicType.Builder.MethodDefinition.ImplementationDefinition<X>, DynamicType.Builder.MethodDefinition.ParameterDefinition.Simple<X>, DynamicType.Builder.MethodDefinition.ParameterDefinition.Simple.Annotatable<X>, DynamicType.Builder.MethodDefinition.TypeVariableDefinition<X>
Direct Known Subclasses:
DynamicType.Builder.AbstractBase.Adapter.MethodDefinitionAdapter.SimpleParameterAnnotationAdapter
Enclosing class:
DynamicType.Builder.MethodDefinition.ParameterDefinition.Simple.Annotatable.AbstractBase<W>

protected abstract static class DynamicType.Builder.MethodDefinition.ParameterDefinition.Simple.Annotatable.AbstractBase.Adapter<X> extends DynamicType.Builder.MethodDefinition.ParameterDefinition.Simple.Annotatable.AbstractBase<X>
An adapter implementation of a simple parameter definition.
  • Constructor Details

    • Adapter

      protected Adapter()
  • Method Details

    • withParameter

      Defines the specified parameter for the currently defined method as the last parameter of the currently defined method.
      Parameters:
      type - The parameter's type. Can also be TargetType if the parameter type should be equal to the currently instrumented type.
      Returns:
      A new builder that is equal to the current builder but where the currently defined method appends the specified parameter.
    • throwing

      Defines a method variable to be declared by the currently defined method.
      Parameters:
      types - The type of the exception being declared by the currently defined method.
      Returns:
      A new builder that is equal to the current builder but where the currently defined method declares the specified exception type.
    • typeVariable

      Defines a method variable to be declared by the currently defined method.
      Parameters:
      symbol - The symbol of the type variable.
      bounds - The bounds of the type variables. Can also be TargetType for any type if a bound type should be equal to the currently instrumented type.
      Returns:
      A new builder that is equal to the current builder but where the currently defined method declares the specified type variable.
    • intercept

      Implements the previously defined or matched method by the supplied implementation. A method interception is typically implemented in one of the following ways:
      1. If a method is declared by the instrumented type and the type builder creates a subclass or redefinition, any preexisting method is replaced by the given implementation. Any previously defined implementation is lost.
      2. If a method is declared by the instrumented type and the type builder creates a rebased version of the instrumented type, the original method is preserved within a private, synthetic method within the instrumented type. The original method therefore remains invokeable and is treated as the direct super method of the new method. When rebasing a type, it therefore becomes possible to invoke a non-virtual method's super method when a preexisting method body is replaced.
      3. If a virtual method is inherited from a super type, it is overridden. The overridden method is available for super method invocation.
      Parameters:
      implementation - The implementation for implementing the previously defined or matched method.
      Returns:
      A new builder where the previously defined or matched method is implemented by the supplied implementation.
    • withoutCode

      Defines the previously defined or matched method not to declare a method body. This implies the method to be abstract unless it was already declared to be native.
      Returns:
      A new builder where the previously defined or matched method is implemented to be abstract.
    • defaultValue

      Defines the previously defined or matched method to return the supplied value as an annotation default value. The value must be supplied in its unloaded state, i.e. enumerations as EnumerationDescription, types as TypeDescription and annotations as AnnotationDescription. For supplying loaded types, use DynamicType.Builder.MethodDefinition.ImplementationDefinition.defaultValue(Object, Class) must be used.
      Parameters:
      annotationValue - The value to be defined as a default value.
      Returns:
      A builder where the previously defined or matched method is implemented to return an annotation default value.
    • defaultValue

      public <V> DynamicType.Builder.MethodDefinition.ReceiverTypeDefinition<X> defaultValue(V value, Class<? extends V> type)
      Defines the previously defined or matched method to return the supplied value as an annotation default value. The value must be supplied in its loaded state paired with the property type of the value.
      Specified by:
      defaultValue in interface DynamicType.Builder.MethodDefinition.ImplementationDefinition<X>
      Overrides:
      defaultValue in class DynamicType.Builder.MethodDefinition.ImplementationDefinition.AbstractBase<X>
      Type Parameters:
      V - The type of the annotation property.
      Parameters:
      value - The value to be defined as a default value.
      type - The type of the annotation property.
      Returns:
      A builder where the previously defined or matched method is implemented to return an annotation default value.
    • materialize

      Materializes this instance as a simple parameter definition with the currently defined properties.
      Returns:
      A simple parameter definition with the currently defined properties.