abstract class org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor<S> implements org.springframework.core.annotation.AnnotationAttributeExtractor<S>
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor
  super_class: java.lang.Object
{
  private final java.lang.Class<? extends java.lang.annotation.Annotation> annotationType;
    descriptor: Ljava/lang/Class;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;

  private final java.lang.Object annotatedElement;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private final S source;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TS;

  private final java.util.Map<java.lang.String, java.util.List<java.lang.String>> attributeAliasMap;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/util/List<Ljava/lang/String;>;>;

  void <init>(java.lang.Class<? extends java.lang.annotation.Annotation>, , );
    descriptor: (Ljava/lang/Class;Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor this
        start local 1 // java.lang.Class annotationType
        start local 2 // java.lang.Object annotatedElement
        start local 3 // java.lang.Object source
         0: .line 59
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 62
            aload 1 /* annotationType */
            ldc "annotationType must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 63
            aload 3 /* source */
            ldc "source must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         3: .line 64
            aload 0 /* this */
            aload 1 /* annotationType */
            putfield org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.annotationType:Ljava/lang/Class;
         4: .line 65
            aload 0 /* this */
            aload 2 /* annotatedElement */
            putfield org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.annotatedElement:Ljava/lang/Object;
         5: .line 66
            aload 0 /* this */
            aload 3 /* source */
            putfield org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.source:Ljava/lang/Object;
         6: .line 67
            aload 0 /* this */
            aload 1 /* annotationType */
            invokestatic org.springframework.core.annotation.AnnotationUtils.getAttributeAliasMap:(Ljava/lang/Class;)Ljava/util/Map;
            putfield org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.attributeAliasMap:Ljava/util/Map;
         7: .line 68
            return
        end local 3 // java.lang.Object source
        end local 2 // java.lang.Object annotatedElement
        end local 1 // java.lang.Class annotationType
        end local 0 // org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    8     0              this  Lorg/springframework/core/annotation/AbstractAliasAwareAnnotationAttributeExtractor<TS;>;
            0    8     1    annotationType  Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;
            0    8     2  annotatedElement  Ljava/lang/Object;
            0    8     3            source  TS;
    Signature: (Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;Ljava/lang/Object;TS;)V
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
        org.springframework.lang.Nullable()
      2:
    MethodParameters:
                  Name  Flags
      annotationType    
      annotatedElement  
      source            

  public final java.lang.Class<? extends java.lang.annotation.Annotation> getAnnotationType();
    descriptor: ()Ljava/lang/Class;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor this
         0: .line 73
            aload 0 /* this */
            getfield org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.annotationType:Ljava/lang/Class;
            areturn
        end local 0 // org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/annotation/AbstractAliasAwareAnnotationAttributeExtractor<TS;>;
    Signature: ()Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;

  public final java.lang.Object getAnnotatedElement();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor this
         0: .line 79
            aload 0 /* this */
            getfield org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.annotatedElement:Ljava/lang/Object;
            areturn
        end local 0 // org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/annotation/AbstractAliasAwareAnnotationAttributeExtractor<TS;>;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public final S getSource();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor this
         0: .line 84
            aload 0 /* this */
            getfield org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.source:Ljava/lang/Object;
            areturn
        end local 0 // org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/annotation/AbstractAliasAwareAnnotationAttributeExtractor<TS;>;
    Signature: ()TS;

  public final java.lang.Object getAttributeValue(java.lang.reflect.Method);
    descriptor: (Ljava/lang/reflect/Method;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=7, locals=10, args_size=2
        start local 0 // org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor this
        start local 1 // java.lang.reflect.Method attributeMethod
         0: .line 90
            aload 1 /* attributeMethod */
            invokevirtual java.lang.reflect.Method.getName:()Ljava/lang/String;
            astore 2 /* attributeName */
        start local 2 // java.lang.String attributeName
         1: .line 91
            aload 0 /* this */
            aload 1 /* attributeMethod */
            invokevirtual org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.getRawAttributeValue:(Ljava/lang/reflect/Method;)Ljava/lang/Object;
            astore 3 /* attributeValue */
        start local 3 // java.lang.Object attributeValue
         2: .line 93
            aload 0 /* this */
            getfield org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.attributeAliasMap:Ljava/util/Map;
            aload 2 /* attributeName */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.List
            astore 4 /* aliasNames */
        start local 4 // java.util.List aliasNames
         3: .line 94
            aload 4 /* aliasNames */
            ifnull 22
         4: .line 95
            aload 0 /* this */
            getfield org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.annotationType:Ljava/lang/Class;
            aload 2 /* attributeName */
            invokestatic org.springframework.core.annotation.AnnotationUtils.getDefaultValue:(Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Object;
            astore 5 /* defaultValue */
        start local 5 // java.lang.Object defaultValue
         5: .line 96
            aload 4 /* aliasNames */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 7
            goto 21
      StackMap locals: org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor java.lang.reflect.Method java.lang.String java.lang.Object java.util.List java.lang.Object top java.util.Iterator
      StackMap stack:
         6: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 6 /* aliasName */
        start local 6 // java.lang.String aliasName
         7: .line 97
            aload 0 /* this */
            aload 6 /* aliasName */
            invokevirtual org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.getRawAttributeValue:(Ljava/lang/String;)Ljava/lang/Object;
            astore 8 /* aliasValue */
        start local 8 // java.lang.Object aliasValue
         8: .line 99
            aload 3 /* attributeValue */
            aload 8 /* aliasValue */
            invokestatic org.springframework.util.ObjectUtils.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 19
         9: .line 100
            aload 3 /* attributeValue */
            aload 5 /* defaultValue */
            invokestatic org.springframework.util.ObjectUtils.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 19
        10: .line 101
            aload 8 /* aliasValue */
            aload 5 /* defaultValue */
            invokestatic org.springframework.util.ObjectUtils.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 19
        11: .line 102
            aload 0 /* this */
            getfield org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.annotatedElement:Ljava/lang/Object;
            ifnull 12
            aload 0 /* this */
            getfield org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.annotatedElement:Ljava/lang/Object;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            goto 13
      StackMap locals: org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor java.lang.reflect.Method java.lang.String java.lang.Object java.util.List java.lang.Object java.lang.String java.util.Iterator java.lang.Object
      StackMap stack:
        12: ldc "unknown element"
      StackMap locals:
      StackMap stack: java.lang.String
        13: astore 9 /* elementName */
        start local 9 // java.lang.String elementName
        14: .line 103
            new org.springframework.core.annotation.AnnotationConfigurationException
            dup
        15: .line 104
            ldc "In annotation [%s] declared on %s and synthesized from [%s], attribute '%s' and its alias '%s' are present with values of [%s] and [%s], but only one is permitted."
            bipush 7
            anewarray java.lang.Object
            dup
            iconst_0
        16: .line 106
            aload 0 /* this */
            getfield org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.annotationType:Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            aastore
            dup
            iconst_1
            aload 9 /* elementName */
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor.source:Ljava/lang/Object;
            aastore
            dup
            iconst_3
            aload 2 /* attributeName */
            aastore
            dup
            iconst_4
            aload 6 /* aliasName */
            aastore
            dup
            iconst_5
        17: .line 107
            aload 3 /* attributeValue */
            invokestatic org.springframework.util.ObjectUtils.nullSafeToString:(Ljava/lang/Object;)Ljava/lang/String;
            aastore
            dup
            bipush 6
            aload 8 /* aliasValue */
            invokestatic org.springframework.util.ObjectUtils.nullSafeToString:(Ljava/lang/Object;)Ljava/lang/String;
            aastore
        18: .line 103
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.springframework.core.annotation.AnnotationConfigurationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 9 // java.lang.String elementName
        19: .line 112
      StackMap locals:
      StackMap stack:
            aload 3 /* attributeValue */
            aload 5 /* defaultValue */
            invokestatic org.springframework.util.ObjectUtils.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 21
        20: .line 113
            aload 8 /* aliasValue */
            astore 3 /* attributeValue */
        end local 8 // java.lang.Object aliasValue
        end local 6 // java.lang.String aliasName
        21: .line 96
      StackMap locals: org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor java.lang.reflect.Method java.lang.String java.lang.Object java.util.List java.lang.Object top java.util.Iterator
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
        end local 5 // java.lang.Object defaultValue
        22: .line 118
      StackMap locals: org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor java.lang.reflect.Method java.lang.String java.lang.Object java.util.List
      StackMap stack:
            aload 3 /* attributeValue */
            areturn
        end local 4 // java.util.List aliasNames
        end local 3 // java.lang.Object attributeValue
        end local 2 // java.lang.String attributeName
        end local 1 // java.lang.reflect.Method attributeMethod
        end local 0 // org.springframework.core.annotation.AbstractAliasAwareAnnotationAttributeExtractor this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   23     0             this  Lorg/springframework/core/annotation/AbstractAliasAwareAnnotationAttributeExtractor<TS;>;
            0   23     1  attributeMethod  Ljava/lang/reflect/Method;
            1   23     2    attributeName  Ljava/lang/String;
            2   23     3   attributeValue  Ljava/lang/Object;
            3   23     4       aliasNames  Ljava/util/List<Ljava/lang/String;>;
            5   22     5     defaultValue  Ljava/lang/Object;
            7   21     6        aliasName  Ljava/lang/String;
            8   21     8       aliasValue  Ljava/lang/Object;
           14   19     9      elementName  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
                 Name  Flags
      attributeMethod  

  protected abstract java.lang.Object getRawAttributeValue(java.lang.reflect.Method);
    descriptor: (Ljava/lang/reflect/Method;)Ljava/lang/Object;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
                 Name  Flags
      attributeMethod  

  protected abstract java.lang.Object getRawAttributeValue(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
               Name  Flags
      attributeName  
}
Signature: <S:Ljava/lang/Object;>Ljava/lang/Object;Lorg/springframework/core/annotation/AnnotationAttributeExtractor<TS;>;
SourceFile: "AbstractAliasAwareAnnotationAttributeExtractor.java"