public final class org.springframework.boot.context.properties.source.ConfigurationPropertyState extends java.lang.Enum<org.springframework.boot.context.properties.source.ConfigurationPropertyState>
  minor version: 0
  major version: 59
  flags: flags: (0x4031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER, ACC_ANNOTATION
  this_class: org.springframework.boot.context.properties.source.ConfigurationPropertyState
  super_class: java.lang.Enum
{
  public static final org.springframework.boot.context.properties.source.ConfigurationPropertyState PRESENT;
    descriptor: Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
    flags: (0x4019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL, ACC_ANNOTATION

  public static final org.springframework.boot.context.properties.source.ConfigurationPropertyState ABSENT;
    descriptor: Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
    flags: (0x4019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL, ACC_ANNOTATION

  public static final org.springframework.boot.context.properties.source.ConfigurationPropertyState UNKNOWN;
    descriptor: Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
    flags: (0x4019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL, ACC_ANNOTATION

  private static final org.springframework.boot.context.properties.source.ConfigurationPropertyState[] ENUM$VALUES;
    descriptor: [Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
    flags: (0x101a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 31
            new org.springframework.boot.context.properties.source.ConfigurationPropertyState
            dup
            ldc "PRESENT"
            iconst_0
            invokespecial org.springframework.boot.context.properties.source.ConfigurationPropertyState.<init>:(Ljava/lang/String;I)V
         1: .line 35
            putstatic org.springframework.boot.context.properties.source.ConfigurationPropertyState.PRESENT:Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
         2: .line 37
            new org.springframework.boot.context.properties.source.ConfigurationPropertyState
            dup
            ldc "ABSENT"
            iconst_1
            invokespecial org.springframework.boot.context.properties.source.ConfigurationPropertyState.<init>:(Ljava/lang/String;I)V
         3: .line 41
            putstatic org.springframework.boot.context.properties.source.ConfigurationPropertyState.ABSENT:Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
         4: .line 43
            new org.springframework.boot.context.properties.source.ConfigurationPropertyState
            dup
            ldc "UNKNOWN"
            iconst_2
            invokespecial org.springframework.boot.context.properties.source.ConfigurationPropertyState.<init>:(Ljava/lang/String;I)V
         5: .line 47
            putstatic org.springframework.boot.context.properties.source.ConfigurationPropertyState.UNKNOWN:Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
         6: .line 29
            iconst_3
            anewarray org.springframework.boot.context.properties.source.ConfigurationPropertyState
            dup
            iconst_0
            getstatic org.springframework.boot.context.properties.source.ConfigurationPropertyState.PRESENT:Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
            aastore
            dup
            iconst_1
            getstatic org.springframework.boot.context.properties.source.ConfigurationPropertyState.ABSENT:Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
            aastore
            dup
            iconst_2
            getstatic org.springframework.boot.context.properties.source.ConfigurationPropertyState.UNKNOWN:Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
            aastore
            putstatic org.springframework.boot.context.properties.source.ConfigurationPropertyState.ENUM$VALUES:[Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.springframework.boot.context.properties.source.ConfigurationPropertyState this
         0: .line 29
            aload 0 /* this */
            aload 1
            iload 2
            invokespecial java.lang.Enum.<init>:(Ljava/lang/String;I)V
            return
        end local 0 // org.springframework.boot.context.properties.source.ConfigurationPropertyState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
    MethodParameters:
               Name  Flags
      $enum$name     
      $enum$ordinal  

  static <T> org.springframework.boot.context.properties.source.ConfigurationPropertyState search(java.lang.Iterable<T>, java.util.function.Predicate<T>);
    descriptor: (Ljava/lang/Iterable;Ljava/util/function/Predicate;)Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // java.lang.Iterable source
        start local 1 // java.util.function.Predicate predicate
         0: .line 59
            aload 0 /* source */
            ldc "Source must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         1: .line 60
            aload 1 /* predicate */
            ldc "Predicate must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 61
            aload 0 /* source */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 3
            goto 6
      StackMap locals: java.lang.Iterable java.util.function.Predicate top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 2 /* item */
        start local 2 // java.lang.Object item
         4: .line 62
            aload 1 /* predicate */
            aload 2 /* item */
            invokeinterface java.util.function.Predicate.test:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 63
            getstatic org.springframework.boot.context.properties.source.ConfigurationPropertyState.PRESENT:Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
            areturn
        end local 2 // java.lang.Object item
         6: .line 61
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         7: .line 66
            getstatic org.springframework.boot.context.properties.source.ConfigurationPropertyState.ABSENT:Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
            areturn
        end local 1 // java.util.function.Predicate predicate
        end local 0 // java.lang.Iterable source
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0     source  Ljava/lang/Iterable<TT;>;
            0    8     1  predicate  Ljava/util/function/Predicate<TT;>;
            4    6     2       item  TT;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Iterable<TT;>;Ljava/util/function/Predicate<TT;>;)Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
    MethodParameters:
           Name  Flags
      source     
      predicate  

  public static org.springframework.boot.context.properties.source.ConfigurationPropertyState[] values();
    descriptor: ()[Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=0
         0: .line 1
            getstatic org.springframework.boot.context.properties.source.ConfigurationPropertyState.ENUM$VALUES:[Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
            dup
            astore 0
            iconst_0
            aload 0
            arraylength
            dup
            istore 1
            anewarray org.springframework.boot.context.properties.source.ConfigurationPropertyState
            dup
            astore 2
            iconst_0
            iload 1
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
            aload 2
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static org.springframework.boot.context.properties.source.ConfigurationPropertyState valueOf(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
         0: .line 1
            ldc Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;
            aload 0
            invokestatic java.lang.Enum.valueOf:(Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Enum;
            checkcast org.springframework.boot.context.properties.source.ConfigurationPropertyState
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    MethodParameters:
      Name  Flags
      name  
}
Signature: Ljava/lang/Enum<Lorg/springframework/boot/context/properties/source/ConfigurationPropertyState;>;
SourceFile: "ConfigurationPropertyState.java"