public interface org.springframework.boot.context.properties.source.IterableConfigurationPropertySource extends org.springframework.boot.context.properties.source.ConfigurationPropertySource, java.lang.Iterable<org.springframework.boot.context.properties.source.ConfigurationPropertyName>
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: org.springframework.boot.context.properties.source.IterableConfigurationPropertySource
  super_class: java.lang.Object
{
  public java.util.Iterator<org.springframework.boot.context.properties.source.ConfigurationPropertyName> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.context.properties.source.IterableConfigurationPropertySource this
         0: .line 51
            aload 0 /* this */
            invokeinterface org.springframework.boot.context.properties.source.IterableConfigurationPropertySource.stream:()Ljava/util/stream/Stream;
            invokeinterface java.util.stream.Stream.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.springframework.boot.context.properties.source.IterableConfigurationPropertySource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/context/properties/source/IterableConfigurationPropertySource;
    Signature: ()Ljava/util/Iterator<Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;>;

  public abstract java.util.stream.Stream<org.springframework.boot.context.properties.source.ConfigurationPropertyName> stream();
    descriptor: ()Ljava/util/stream/Stream;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Ljava/util/stream/Stream<Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;>;

  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=3, locals=2, args_size=2
        start local 0 // org.springframework.boot.context.properties.source.IterableConfigurationPropertySource this
        start local 1 // org.springframework.boot.context.properties.source.ConfigurationPropertyName name
         0: .line 63
            aload 0 /* this */
            aload 1 /* name */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic test(Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;)Ljava/util/function/Predicate;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Z
                  org/springframework/boot/context/properties/source/ConfigurationPropertyName.isAncestorOf(Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;)Z (5)
                  (Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;)Z
            invokestatic org.springframework.boot.context.properties.source.ConfigurationPropertyState.search:(Ljava/lang/Iterable;Ljava/util/function/Predicate;)Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
            areturn
        end local 1 // org.springframework.boot.context.properties.source.ConfigurationPropertyName name
        end local 0 // org.springframework.boot.context.properties.source.IterableConfigurationPropertySource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/context/properties/source/IterableConfigurationPropertySource;
            0    1     1  name  Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;
    MethodParameters:
      Name  Flags
      name  

  public org.springframework.boot.context.properties.source.IterableConfigurationPropertySource filter(java.util.function.Predicate<org.springframework.boot.context.properties.source.ConfigurationPropertyName>);
    descriptor: (Ljava/util/function/Predicate;)Lorg/springframework/boot/context/properties/source/IterableConfigurationPropertySource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.springframework.boot.context.properties.source.IterableConfigurationPropertySource this
        start local 1 // java.util.function.Predicate filter
         0: .line 68
            new org.springframework.boot.context.properties.source.FilteredIterableConfigurationPropertiesSource
            dup
            aload 0 /* this */
            aload 1 /* filter */
            invokespecial org.springframework.boot.context.properties.source.FilteredIterableConfigurationPropertiesSource.<init>:(Lorg/springframework/boot/context/properties/source/IterableConfigurationPropertySource;Ljava/util/function/Predicate;)V
            areturn
        end local 1 // java.util.function.Predicate filter
        end local 0 // org.springframework.boot.context.properties.source.IterableConfigurationPropertySource this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/springframework/boot/context/properties/source/IterableConfigurationPropertySource;
            0    1     1  filter  Ljava/util/function/Predicate<Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;>;
    Signature: (Ljava/util/function/Predicate<Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;>;)Lorg/springframework/boot/context/properties/source/IterableConfigurationPropertySource;
    MethodParameters:
        Name  Flags
      filter  

  public org.springframework.boot.context.properties.source.IterableConfigurationPropertySource withAliases(org.springframework.boot.context.properties.source.ConfigurationPropertyNameAliases);
    descriptor: (Lorg/springframework/boot/context/properties/source/ConfigurationPropertyNameAliases;)Lorg/springframework/boot/context/properties/source/IterableConfigurationPropertySource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.springframework.boot.context.properties.source.IterableConfigurationPropertySource this
        start local 1 // org.springframework.boot.context.properties.source.ConfigurationPropertyNameAliases aliases
         0: .line 73
            new org.springframework.boot.context.properties.source.AliasedIterableConfigurationPropertySource
            dup
            aload 0 /* this */
            aload 1 /* aliases */
            invokespecial org.springframework.boot.context.properties.source.AliasedIterableConfigurationPropertySource.<init>:(Lorg/springframework/boot/context/properties/source/IterableConfigurationPropertySource;Lorg/springframework/boot/context/properties/source/ConfigurationPropertyNameAliases;)V
            areturn
        end local 1 // org.springframework.boot.context.properties.source.ConfigurationPropertyNameAliases aliases
        end local 0 // org.springframework.boot.context.properties.source.IterableConfigurationPropertySource this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/springframework/boot/context/properties/source/IterableConfigurationPropertySource;
            0    1     1  aliases  Lorg/springframework/boot/context/properties/source/ConfigurationPropertyNameAliases;
    MethodParameters:
         Name  Flags
      aliases  

  public org.springframework.boot.context.properties.source.ConfigurationPropertySource filter(java.util.function.Predicate);
    descriptor: (Ljava/util/function/Predicate;)Lorg/springframework/boot/context/properties/source/ConfigurationPropertySource;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface org.springframework.boot.context.properties.source.IterableConfigurationPropertySource.filter:(Ljava/util/function/Predicate;)Lorg/springframework/boot/context/properties/source/IterableConfigurationPropertySource;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.springframework.boot.context.properties.source.ConfigurationPropertySource withAliases(org.springframework.boot.context.properties.source.ConfigurationPropertyNameAliases);
    descriptor: (Lorg/springframework/boot/context/properties/source/ConfigurationPropertyNameAliases;)Lorg/springframework/boot/context/properties/source/ConfigurationPropertySource;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokeinterface org.springframework.boot.context.properties.source.IterableConfigurationPropertySource.withAliases:(Lorg/springframework/boot/context/properties/source/ConfigurationPropertyNameAliases;)Lorg/springframework/boot/context/properties/source/IterableConfigurationPropertySource;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lorg/springframework/boot/context/properties/source/ConfigurationPropertySource;Ljava/lang/Iterable<Lorg/springframework/boot/context/properties/source/ConfigurationPropertyName;>;
SourceFile: "IterableConfigurationPropertySource.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles