class org.springframework.boot.context.properties.source.SpringConfigurationPropertySource implements org.springframework.boot.context.properties.source.ConfigurationPropertySource
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.springframework.boot.context.properties.source.SpringConfigurationPropertySource
  super_class: java.lang.Object
{
  private static final org.springframework.boot.context.properties.source.PropertyMapper[] DEFAULT_MAPPERS;
    descriptor: [Lorg/springframework/boot/context/properties/source/PropertyMapper;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final org.springframework.boot.context.properties.source.PropertyMapper[] SYSTEM_ENVIRONMENT_MAPPERS;
    descriptor: [Lorg/springframework/boot/context/properties/source/PropertyMapper;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final org.springframework.core.env.PropertySource<?> propertySource;
    descriptor: Lorg/springframework/core/env/PropertySource;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/springframework/core/env/PropertySource<*>;

  private final org.springframework.boot.context.properties.source.PropertyMapper[] mappers;
    descriptor: [Lorg/springframework/boot/context/properties/source/PropertyMapper;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 55
            iconst_1
            anewarray org.springframework.boot.context.properties.source.PropertyMapper
            dup
            iconst_0
            getstatic org.springframework.boot.context.properties.source.DefaultPropertyMapper.INSTANCE:Lorg/springframework/boot/context/properties/source/PropertyMapper;
            aastore
            putstatic org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.DEFAULT_MAPPERS:[Lorg/springframework/boot/context/properties/source/PropertyMapper;
         1: .line 57
            iconst_2
            anewarray org.springframework.boot.context.properties.source.PropertyMapper
            dup
            iconst_0
            getstatic org.springframework.boot.context.properties.source.SystemEnvironmentPropertyMapper.INSTANCE:Lorg/springframework/boot/context/properties/source/PropertyMapper;
            aastore
            dup
            iconst_1
         2: .line 58
            getstatic org.springframework.boot.context.properties.source.DefaultPropertyMapper.INSTANCE:Lorg/springframework/boot/context/properties/source/PropertyMapper;
            aastore
         3: .line 57
            putstatic org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.SYSTEM_ENVIRONMENT_MAPPERS:[Lorg/springframework/boot/context/properties/source/PropertyMapper;
         4: .line 58
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(org.springframework.core.env.PropertySource<?>, org.springframework.boot.context.properties.source.PropertyMapper[]);
    descriptor: (Lorg/springframework/core/env/PropertySource;[Lorg/springframework/boot/context/properties/source/PropertyMapper;)V
    flags: (0x0080) ACC_VARARGS
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySource this
        start local 1 // org.springframework.core.env.PropertySource propertySource
        start local 2 // org.springframework.boot.context.properties.source.PropertyMapper[] mappers
         0: .line 69
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 70
            aload 1 /* propertySource */
            ldc "PropertySource must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 71
            aload 2 /* mappers */
            arraylength
            ifle 3
            iconst_1
            goto 4
      StackMap locals: org.springframework.boot.context.properties.source.SpringConfigurationPropertySource org.springframework.core.env.PropertySource org.springframework.boot.context.properties.source.PropertyMapper[]
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: ldc "Mappers must contain at least one item"
            invokestatic org.springframework.util.Assert.isTrue:(ZLjava/lang/String;)V
         5: .line 72
            aload 0 /* this */
            aload 1 /* propertySource */
            putfield org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.propertySource:Lorg/springframework/core/env/PropertySource;
         6: .line 73
            aload 0 /* this */
            aload 2 /* mappers */
            putfield org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.mappers:[Lorg/springframework/boot/context/properties/source/PropertyMapper;
         7: .line 74
            return
        end local 2 // org.springframework.boot.context.properties.source.PropertyMapper[] mappers
        end local 1 // org.springframework.core.env.PropertySource propertySource
        end local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySource this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    8     0            this  Lorg/springframework/boot/context/properties/source/SpringConfigurationPropertySource;
            0    8     1  propertySource  Lorg/springframework/core/env/PropertySource<*>;
            0    8     2         mappers  [Lorg/springframework/boot/context/properties/source/PropertyMapper;
    Signature: (Lorg/springframework/core/env/PropertySource<*>;[Lorg/springframework/boot/context/properties/source/PropertyMapper;)V
    MethodParameters:
                Name  Flags
      propertySource  
      mappers         

  public org.springframework.boot.context.properties.source.ConfigurationProperty getConfigurationProperty(org.springframework.boot.context.properties.source.ConfigurationPropertyName);
    descriptor: (Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;)Lorg/springframework/boot/context/properties/source/ConfigurationProperty;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=10, args_size=2
        start local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySource this
        start local 1 // org.springframework.boot.context.properties.source.ConfigurationPropertyName name
         0: .line 78
            aload 1 /* name */
            ifnonnull 2
         1: .line 79
            aconst_null
            areturn
         2: .line 81
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.mappers:[Lorg/springframework/boot/context/properties/source/PropertyMapper;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 15
      StackMap locals: org.springframework.boot.context.properties.source.SpringConfigurationPropertySource org.springframework.boot.context.properties.source.ConfigurationPropertyName top int int org.springframework.boot.context.properties.source.PropertyMapper[]
      StackMap stack:
         3: aload 5
            iload 3
            aaload
            astore 2 /* mapper */
        start local 2 // org.springframework.boot.context.properties.source.PropertyMapper mapper
         4: .line 83
            aload 2 /* mapper */
            aload 1 /* name */
            invokeinterface org.springframework.boot.context.properties.source.PropertyMapper.map:(Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;)Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 7
            goto 11
      StackMap locals: org.springframework.boot.context.properties.source.SpringConfigurationPropertySource org.springframework.boot.context.properties.source.ConfigurationPropertyName org.springframework.boot.context.properties.source.PropertyMapper int int org.springframework.boot.context.properties.source.PropertyMapper[] top java.util.Iterator
      StackMap stack:
         5: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 6 /* candidate */
        start local 6 // java.lang.String candidate
         6: .line 84
            aload 0 /* this */
            invokevirtual org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.getPropertySource:()Lorg/springframework/core/env/PropertySource;
            aload 6 /* candidate */
            invokevirtual org.springframework.core.env.PropertySource.getProperty:(Ljava/lang/String;)Ljava/lang/Object;
            astore 8 /* value */
        start local 8 // java.lang.Object value
         7: .line 85
            aload 8 /* value */
            ifnull 11
         8: .line 86
            aload 0 /* this */
            invokevirtual org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.getPropertySource:()Lorg/springframework/core/env/PropertySource;
            aload 6 /* candidate */
            invokestatic org.springframework.boot.origin.PropertySourceOrigin.get:(Lorg/springframework/core/env/PropertySource;Ljava/lang/String;)Lorg/springframework/boot/origin/Origin;
            astore 9 /* origin */
        start local 9 // org.springframework.boot.origin.Origin origin
         9: .line 87
            aload 1 /* name */
            aload 8 /* value */
            aload 9 /* origin */
            invokestatic org.springframework.boot.context.properties.source.ConfigurationProperty.of:(Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;Ljava/lang/Object;Lorg/springframework/boot/origin/Origin;)Lorg/springframework/boot/context/properties/source/ConfigurationProperty;
        10: areturn
        end local 9 // org.springframework.boot.origin.Origin origin
        end local 8 // java.lang.Object value
        end local 6 // java.lang.String candidate
        11: .line 83
      StackMap locals:
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        12: .line 90
            goto 14
        13: .line 91
      StackMap locals: org.springframework.boot.context.properties.source.SpringConfigurationPropertySource org.springframework.boot.context.properties.source.ConfigurationPropertyName org.springframework.boot.context.properties.source.PropertyMapper int int org.springframework.boot.context.properties.source.PropertyMapper[]
      StackMap stack: java.lang.Exception
            pop
        end local 2 // org.springframework.boot.context.properties.source.PropertyMapper mapper
        14: .line 81
      StackMap locals: org.springframework.boot.context.properties.source.SpringConfigurationPropertySource org.springframework.boot.context.properties.source.ConfigurationPropertyName top int int org.springframework.boot.context.properties.source.PropertyMapper[]
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
        15: iload 3
            iload 4
            if_icmplt 3
        16: .line 94
            aconst_null
            areturn
        end local 1 // org.springframework.boot.context.properties.source.ConfigurationPropertyName name
        end local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySource this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0       this  Lorg/springframework/boot/context/properties/source/SpringConfigurationPropertySource;
            0   17     1       name  Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;
            4   14     2     mapper  Lorg/springframework/boot/context/properties/source/PropertyMapper;
            6   11     6  candidate  Ljava/lang/String;
            7   11     8      value  Ljava/lang/Object;
            9   11     9     origin  Lorg/springframework/boot/origin/Origin;
      Exception table:
        from    to  target  type
           4    10      13  Class java.lang.Exception
          11    12      13  Class java.lang.Exception
    MethodParameters:
      Name  Flags
      name  

  public org.springframework.boot.context.properties.source.ConfigurationPropertyState containsDescendantOf(org.springframework.boot.context.properties.source.ConfigurationPropertyName);
    descriptor: (Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;)Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySource this
        start local 1 // org.springframework.boot.context.properties.source.ConfigurationPropertyName name
         0: .line 99
            aload 0 /* this */
            invokevirtual org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.getPropertySource:()Lorg/springframework/core/env/PropertySource;
            astore 2 /* source */
        start local 2 // org.springframework.core.env.PropertySource source
         1: .line 100
            aload 2 /* source */
            invokevirtual org.springframework.core.env.PropertySource.getSource:()Ljava/lang/Object;
            instanceof java.util.Random
            ifeq 3
         2: .line 101
            ldc "random"
            aload 1 /* name */
            invokestatic org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.containsDescendantOfForRandom:(Ljava/lang/String;Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;)Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
            areturn
         3: .line 103
      StackMap locals: org.springframework.core.env.PropertySource
      StackMap stack:
            aload 2 /* source */
            invokevirtual org.springframework.core.env.PropertySource.getSource:()Ljava/lang/Object;
            instanceof org.springframework.core.env.PropertySource
            ifeq 6
         4: .line 104
            aload 2 /* source */
            invokevirtual org.springframework.core.env.PropertySource.getSource:()Ljava/lang/Object;
            checkcast org.springframework.core.env.PropertySource
            invokevirtual org.springframework.core.env.PropertySource.getSource:()Ljava/lang/Object;
            instanceof java.util.Random
            ifeq 6
         5: .line 106
            aload 2 /* source */
            invokevirtual org.springframework.core.env.PropertySource.getName:()Ljava/lang/String;
            aload 1 /* name */
            invokestatic org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.containsDescendantOfForRandom:(Ljava/lang/String;Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;)Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
            areturn
         6: .line 108
      StackMap locals:
      StackMap stack:
            getstatic org.springframework.boot.context.properties.source.ConfigurationPropertyState.UNKNOWN:Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
            areturn
        end local 2 // org.springframework.core.env.PropertySource source
        end local 1 // org.springframework.boot.context.properties.source.ConfigurationPropertyName name
        end local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySource this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/springframework/boot/context/properties/source/SpringConfigurationPropertySource;
            0    7     1    name  Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;
            1    7     2  source  Lorg/springframework/core/env/PropertySource<*>;
    MethodParameters:
      Name  Flags
      name  

  private static org.springframework.boot.context.properties.source.ConfigurationPropertyState containsDescendantOfForRandom(java.lang.String, org.springframework.boot.context.properties.source.ConfigurationPropertyName);
    descriptor: (Ljava/lang/String;Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;)Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.lang.String prefix
        start local 1 // org.springframework.boot.context.properties.source.ConfigurationPropertyName name
         0: .line 113
            aload 1 /* name */
            invokevirtual org.springframework.boot.context.properties.source.ConfigurationPropertyName.getNumberOfElements:()I
            iconst_1
            if_icmple 2
            aload 1 /* name */
            iconst_0
            getstatic org.springframework.boot.context.properties.source.ConfigurationPropertyName$Form.DASHED:Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName$Form;
            invokevirtual org.springframework.boot.context.properties.source.ConfigurationPropertyName.getElement:(ILorg/springframework/boot/context/properties/source/ConfigurationPropertyName$Form;)Ljava/lang/String;
            aload 0 /* prefix */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 114
            getstatic org.springframework.boot.context.properties.source.ConfigurationPropertyState.PRESENT:Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
            areturn
         2: .line 116
      StackMap locals:
      StackMap stack:
            getstatic org.springframework.boot.context.properties.source.ConfigurationPropertyState.ABSENT:Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
            areturn
        end local 1 // org.springframework.boot.context.properties.source.ConfigurationPropertyName name
        end local 0 // java.lang.String prefix
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0  prefix  Ljava/lang/String;
            0    3     1    name  Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;
    MethodParameters:
        Name  Flags
      prefix  
      name    

  public java.lang.Object getUnderlyingSource();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySource this
         0: .line 121
            aload 0 /* this */
            getfield org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.propertySource:Lorg/springframework/core/env/PropertySource;
            areturn
        end local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/context/properties/source/SpringConfigurationPropertySource;

  protected org.springframework.core.env.PropertySource<?> getPropertySource();
    descriptor: ()Lorg/springframework/core/env/PropertySource;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySource this
         0: .line 125
            aload 0 /* this */
            getfield org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.propertySource:Lorg/springframework/core/env/PropertySource;
            areturn
        end local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/context/properties/source/SpringConfigurationPropertySource;
    Signature: ()Lorg/springframework/core/env/PropertySource<*>;

  protected final org.springframework.boot.context.properties.source.PropertyMapper[] getMappers();
    descriptor: ()[Lorg/springframework/boot/context/properties/source/PropertyMapper;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySource this
         0: .line 129
            aload 0 /* this */
            getfield org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.mappers:[Lorg/springframework/boot/context/properties/source/PropertyMapper;
            areturn
        end local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/context/properties/source/SpringConfigurationPropertySource;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySource this
         0: .line 134
            aload 0 /* this */
            getfield org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.propertySource:Lorg/springframework/core/env/PropertySource;
            invokevirtual org.springframework.core.env.PropertySource.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.springframework.boot.context.properties.source.SpringConfigurationPropertySource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/context/properties/source/SpringConfigurationPropertySource;

  static org.springframework.boot.context.properties.source.SpringConfigurationPropertySource from(org.springframework.core.env.PropertySource<?>);
    descriptor: (Lorg/springframework/core/env/PropertySource;)Lorg/springframework/boot/context/properties/source/SpringConfigurationPropertySource;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.springframework.core.env.PropertySource source
         0: .line 145
            aload 0 /* source */
            ldc "Source must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         1: .line 146
            aload 0 /* source */
            invokestatic org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.getPropertyMappers:(Lorg/springframework/core/env/PropertySource;)[Lorg/springframework/boot/context/properties/source/PropertyMapper;
            astore 1 /* mappers */
        start local 1 // org.springframework.boot.context.properties.source.PropertyMapper[] mappers
         2: .line 147
            aload 0 /* source */
            invokestatic org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.isFullEnumerable:(Lorg/springframework/core/env/PropertySource;)Z
            ifeq 4
         3: .line 148
            new org.springframework.boot.context.properties.source.SpringIterableConfigurationPropertySource
            dup
            aload 0 /* source */
            checkcast org.springframework.core.env.EnumerablePropertySource
            aload 1 /* mappers */
            invokespecial org.springframework.boot.context.properties.source.SpringIterableConfigurationPropertySource.<init>:(Lorg/springframework/core/env/EnumerablePropertySource;[Lorg/springframework/boot/context/properties/source/PropertyMapper;)V
            areturn
         4: .line 150
      StackMap locals: org.springframework.boot.context.properties.source.PropertyMapper[]
      StackMap stack:
            new org.springframework.boot.context.properties.source.SpringConfigurationPropertySource
            dup
            aload 0 /* source */
            aload 1 /* mappers */
            invokespecial org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.<init>:(Lorg/springframework/core/env/PropertySource;[Lorg/springframework/boot/context/properties/source/PropertyMapper;)V
            areturn
        end local 1 // org.springframework.boot.context.properties.source.PropertyMapper[] mappers
        end local 0 // org.springframework.core.env.PropertySource source
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0   source  Lorg/springframework/core/env/PropertySource<*>;
            2    5     1  mappers  [Lorg/springframework/boot/context/properties/source/PropertyMapper;
    Signature: (Lorg/springframework/core/env/PropertySource<*>;)Lorg/springframework/boot/context/properties/source/SpringConfigurationPropertySource;
    MethodParameters:
        Name  Flags
      source  

  private static org.springframework.boot.context.properties.source.PropertyMapper[] getPropertyMappers(org.springframework.core.env.PropertySource<?>);
    descriptor: (Lorg/springframework/core/env/PropertySource;)[Lorg/springframework/boot/context/properties/source/PropertyMapper;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.env.PropertySource source
         0: .line 154
            aload 0 /* source */
            instanceof org.springframework.core.env.SystemEnvironmentPropertySource
            ifeq 2
            aload 0 /* source */
            invokestatic org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.hasSystemEnvironmentName:(Lorg/springframework/core/env/PropertySource;)Z
            ifeq 2
         1: .line 155
            getstatic org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.SYSTEM_ENVIRONMENT_MAPPERS:[Lorg/springframework/boot/context/properties/source/PropertyMapper;
            areturn
         2: .line 157
      StackMap locals:
      StackMap stack:
            getstatic org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.DEFAULT_MAPPERS:[Lorg/springframework/boot/context/properties/source/PropertyMapper;
            areturn
        end local 0 // org.springframework.core.env.PropertySource source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0  source  Lorg/springframework/core/env/PropertySource<*>;
    Signature: (Lorg/springframework/core/env/PropertySource<*>;)[Lorg/springframework/boot/context/properties/source/PropertyMapper;
    MethodParameters:
        Name  Flags
      source  

  private static boolean hasSystemEnvironmentName(org.springframework.core.env.PropertySource<?>);
    descriptor: (Lorg/springframework/core/env/PropertySource;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.springframework.core.env.PropertySource source
         0: .line 161
            aload 0 /* source */
            invokevirtual org.springframework.core.env.PropertySource.getName:()Ljava/lang/String;
            astore 1 /* name */
        start local 1 // java.lang.String name
         1: .line 162
            ldc "systemEnvironment"
            aload 1 /* name */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 4
         2: .line 163
            aload 1 /* name */
            ldc "-systemEnvironment"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifne 4
         3: .line 162
            iconst_0
            ireturn
      StackMap locals: java.lang.String
      StackMap stack:
         4: iconst_1
            ireturn
        end local 1 // java.lang.String name
        end local 0 // org.springframework.core.env.PropertySource source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0  source  Lorg/springframework/core/env/PropertySource<*>;
            1    5     1    name  Ljava/lang/String;
    Signature: (Lorg/springframework/core/env/PropertySource<*>;)Z
    MethodParameters:
        Name  Flags
      source  

  private static boolean isFullEnumerable(org.springframework.core.env.PropertySource<?>);
    descriptor: (Lorg/springframework/core/env/PropertySource;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.springframework.core.env.PropertySource source
         0: .line 167
            aload 0 /* source */
            invokestatic org.springframework.boot.context.properties.source.SpringConfigurationPropertySource.getRootSource:(Lorg/springframework/core/env/PropertySource;)Lorg/springframework/core/env/PropertySource;
            astore 1 /* rootSource */
        start local 1 // org.springframework.core.env.PropertySource rootSource
         1: .line 168
            aload 1 /* rootSource */
            invokevirtual org.springframework.core.env.PropertySource.getSource:()Ljava/lang/Object;
            instanceof java.util.Map
            ifeq 6
         2: .line 171
            aload 1 /* rootSource */
            invokevirtual org.springframework.core.env.PropertySource.getSource:()Ljava/lang/Object;
            checkcast java.util.Map
            invokeinterface java.util.Map.size:()I
            pop
         3: .line 172
            goto 6
         4: .line 173
      StackMap locals: org.springframework.core.env.PropertySource org.springframework.core.env.PropertySource
      StackMap stack: java.lang.UnsupportedOperationException
            pop
         5: .line 174
            iconst_0
            ireturn
         6: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* source */
            instanceof org.springframework.core.env.EnumerablePropertySource
            ireturn
        end local 1 // org.springframework.core.env.PropertySource rootSource
        end local 0 // org.springframework.core.env.PropertySource source
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0      source  Lorg/springframework/core/env/PropertySource<*>;
            1    7     1  rootSource  Lorg/springframework/core/env/PropertySource<*>;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.UnsupportedOperationException
    Signature: (Lorg/springframework/core/env/PropertySource<*>;)Z
    MethodParameters:
        Name  Flags
      source  

  private static org.springframework.core.env.PropertySource<?> getRootSource(org.springframework.core.env.PropertySource<?>);
    descriptor: (Lorg/springframework/core/env/PropertySource;)Lorg/springframework/core/env/PropertySource;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.env.PropertySource source
         0: .line 181
            goto 2
         1: .line 182
      StackMap locals:
      StackMap stack:
            aload 0 /* source */
            invokevirtual org.springframework.core.env.PropertySource.getSource:()Ljava/lang/Object;
            checkcast org.springframework.core.env.PropertySource
            astore 0 /* source */
         2: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* source */
            invokevirtual org.springframework.core.env.PropertySource.getSource:()Ljava/lang/Object;
            ifnull 3
            aload 0 /* source */
            invokevirtual org.springframework.core.env.PropertySource.getSource:()Ljava/lang/Object;
            instanceof org.springframework.core.env.PropertySource
            ifne 1
         3: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* source */
            areturn
        end local 0 // org.springframework.core.env.PropertySource source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0  source  Lorg/springframework/core/env/PropertySource<*>;
    Signature: (Lorg/springframework/core/env/PropertySource<*>;)Lorg/springframework/core/env/PropertySource<*>;
    MethodParameters:
        Name  Flags
      source  
}
SourceFile: "SpringConfigurationPropertySource.java"
InnerClasses:
  public final Form = org.springframework.boot.context.properties.source.ConfigurationPropertyName$Form of org.springframework.boot.context.properties.source.ConfigurationPropertyName