class org.bson.codecs.configuration.ChildCodecRegistry<T> implements org.bson.codecs.configuration.CodecRegistry
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.bson.codecs.configuration.ChildCodecRegistry
  super_class: java.lang.Object
{
  private final org.bson.codecs.configuration.ChildCodecRegistry<?> parent;
    descriptor: Lorg/bson/codecs/configuration/ChildCodecRegistry;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/bson/codecs/configuration/ChildCodecRegistry<*>;

  private final org.bson.codecs.configuration.ProvidersCodecRegistry registry;
    descriptor: Lorg/bson/codecs/configuration/ProvidersCodecRegistry;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Class<T> codecClass;
    descriptor: Ljava/lang/Class;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/Class<TT;>;

  void <init>(org.bson.codecs.configuration.ProvidersCodecRegistry, java.lang.Class<T>);
    descriptor: (Lorg/bson/codecs/configuration/ProvidersCodecRegistry;Ljava/lang/Class;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.bson.codecs.configuration.ChildCodecRegistry this
        start local 1 // org.bson.codecs.configuration.ProvidersCodecRegistry registry
        start local 2 // java.lang.Class codecClass
         0: .line 29
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 30
            aload 0 /* this */
            aload 2 /* codecClass */
            putfield org.bson.codecs.configuration.ChildCodecRegistry.codecClass:Ljava/lang/Class;
         2: .line 31
            aload 0 /* this */
            aconst_null
            putfield org.bson.codecs.configuration.ChildCodecRegistry.parent:Lorg/bson/codecs/configuration/ChildCodecRegistry;
         3: .line 32
            aload 0 /* this */
            aload 1 /* registry */
            putfield org.bson.codecs.configuration.ChildCodecRegistry.registry:Lorg/bson/codecs/configuration/ProvidersCodecRegistry;
         4: .line 33
            return
        end local 2 // java.lang.Class codecClass
        end local 1 // org.bson.codecs.configuration.ProvidersCodecRegistry registry
        end local 0 // org.bson.codecs.configuration.ChildCodecRegistry this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/bson/codecs/configuration/ChildCodecRegistry<TT;>;
            0    5     1    registry  Lorg/bson/codecs/configuration/ProvidersCodecRegistry;
            0    5     2  codecClass  Ljava/lang/Class<TT;>;
    Signature: (Lorg/bson/codecs/configuration/ProvidersCodecRegistry;Ljava/lang/Class<TT;>;)V
    MethodParameters:
            Name  Flags
      registry    final
      codecClass  final

  private void <init>(org.bson.codecs.configuration.ChildCodecRegistry<?>, java.lang.Class<T>);
    descriptor: (Lorg/bson/codecs/configuration/ChildCodecRegistry;Ljava/lang/Class;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.bson.codecs.configuration.ChildCodecRegistry this
        start local 1 // org.bson.codecs.configuration.ChildCodecRegistry parent
        start local 2 // java.lang.Class codecClass
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            aload 0 /* this */
            aload 1 /* parent */
            putfield org.bson.codecs.configuration.ChildCodecRegistry.parent:Lorg/bson/codecs/configuration/ChildCodecRegistry;
         2: .line 38
            aload 0 /* this */
            aload 2 /* codecClass */
            putfield org.bson.codecs.configuration.ChildCodecRegistry.codecClass:Ljava/lang/Class;
         3: .line 39
            aload 0 /* this */
            aload 1 /* parent */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.registry:Lorg/bson/codecs/configuration/ProvidersCodecRegistry;
            putfield org.bson.codecs.configuration.ChildCodecRegistry.registry:Lorg/bson/codecs/configuration/ProvidersCodecRegistry;
         4: .line 40
            return
        end local 2 // java.lang.Class codecClass
        end local 1 // org.bson.codecs.configuration.ChildCodecRegistry parent
        end local 0 // org.bson.codecs.configuration.ChildCodecRegistry this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/bson/codecs/configuration/ChildCodecRegistry<TT;>;
            0    5     1      parent  Lorg/bson/codecs/configuration/ChildCodecRegistry<*>;
            0    5     2  codecClass  Ljava/lang/Class<TT;>;
    Signature: (Lorg/bson/codecs/configuration/ChildCodecRegistry<*>;Ljava/lang/Class<TT;>;)V
    MethodParameters:
            Name  Flags
      parent      final
      codecClass  final

  public java.lang.Class<T> getCodecClass();
    descriptor: ()Ljava/lang/Class;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bson.codecs.configuration.ChildCodecRegistry this
         0: .line 43
            aload 0 /* this */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.codecClass:Ljava/lang/Class;
            areturn
        end local 0 // org.bson.codecs.configuration.ChildCodecRegistry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/codecs/configuration/ChildCodecRegistry<TT;>;
    Signature: ()Ljava/lang/Class<TT;>;

  public <U> org.bson.codecs.Codec<U> get(java.lang.Class<U>);
    descriptor: (Ljava/lang/Class;)Lorg/bson/codecs/Codec;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.bson.codecs.configuration.ChildCodecRegistry this
        start local 1 // java.lang.Class clazz
         0: .line 48
            aload 0 /* this */
            aload 1 /* clazz */
            invokevirtual org.bson.codecs.configuration.ChildCodecRegistry.hasCycles:(Ljava/lang/Class;)Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 2
         1: .line 49
            new org.bson.codecs.configuration.LazyCodec
            dup
            aload 0 /* this */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.registry:Lorg/bson/codecs/configuration/ProvidersCodecRegistry;
            aload 1 /* clazz */
            invokespecial org.bson.codecs.configuration.LazyCodec.<init>:(Lorg/bson/codecs/configuration/CodecRegistry;Ljava/lang/Class;)V
            areturn
         2: .line 51
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.registry:Lorg/bson/codecs/configuration/ProvidersCodecRegistry;
            new org.bson.codecs.configuration.ChildCodecRegistry
            dup
            aload 0 /* this */
            aload 1 /* clazz */
            invokespecial org.bson.codecs.configuration.ChildCodecRegistry.<init>:(Lorg/bson/codecs/configuration/ChildCodecRegistry;Ljava/lang/Class;)V
            invokevirtual org.bson.codecs.configuration.ProvidersCodecRegistry.get:(Lorg/bson/codecs/configuration/ChildCodecRegistry;)Lorg/bson/codecs/Codec;
            areturn
        end local 1 // java.lang.Class clazz
        end local 0 // org.bson.codecs.configuration.ChildCodecRegistry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/bson/codecs/configuration/ChildCodecRegistry<TT;>;
            0    3     1  clazz  Ljava/lang/Class<TU;>;
    Signature: <U:Ljava/lang/Object;>(Ljava/lang/Class<TU;>;)Lorg/bson/codecs/Codec<TU;>;
    MethodParameters:
       Name  Flags
      clazz  final

  private <U> java.lang.Boolean hasCycles(java.lang.Class<U>);
    descriptor: (Ljava/lang/Class;)Ljava/lang/Boolean;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.bson.codecs.configuration.ChildCodecRegistry this
        start local 1 // java.lang.Class theClass
         0: .line 57
            aload 0 /* this */
            astore 2 /* current */
        start local 2 // org.bson.codecs.configuration.ChildCodecRegistry current
         1: .line 58
            goto 5
         2: .line 59
      StackMap locals: org.bson.codecs.configuration.ChildCodecRegistry
      StackMap stack:
            aload 2 /* current */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.codecClass:Ljava/lang/Class;
            aload 1 /* theClass */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 60
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            areturn
         4: .line 63
      StackMap locals:
      StackMap stack:
            aload 2 /* current */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.parent:Lorg/bson/codecs/configuration/ChildCodecRegistry;
            astore 2 /* current */
         5: .line 58
      StackMap locals:
      StackMap stack:
            aload 2 /* current */
            ifnonnull 2
         6: .line 66
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            areturn
        end local 2 // org.bson.codecs.configuration.ChildCodecRegistry current
        end local 1 // java.lang.Class theClass
        end local 0 // org.bson.codecs.configuration.ChildCodecRegistry this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/bson/codecs/configuration/ChildCodecRegistry<TT;>;
            0    7     1  theClass  Ljava/lang/Class<TU;>;
            1    7     2   current  Lorg/bson/codecs/configuration/ChildCodecRegistry;
    Signature: <U:Ljava/lang/Object;>(Ljava/lang/Class<TU;>;)Ljava/lang/Boolean;
    MethodParameters:
          Name  Flags
      theClass  final

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.bson.codecs.configuration.ChildCodecRegistry this
        start local 1 // java.lang.Object o
         0: .line 71
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 2
         1: .line 72
            iconst_1
            ireturn
         2: .line 74
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            ifnull 3
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* o */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 4
         3: .line 75
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         4: .line 78
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.bson.codecs.configuration.ChildCodecRegistry
            astore 2 /* that */
        start local 2 // org.bson.codecs.configuration.ChildCodecRegistry that
         5: .line 80
            aload 0 /* this */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.codecClass:Ljava/lang/Class;
            aload 2 /* that */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.codecClass:Ljava/lang/Class;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 7
         6: .line 81
            iconst_0
            ireturn
         7: .line 83
      StackMap locals: org.bson.codecs.configuration.ChildCodecRegistry
      StackMap stack:
            aload 0 /* this */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.parent:Lorg/bson/codecs/configuration/ChildCodecRegistry;
            ifnull 8
            aload 0 /* this */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.parent:Lorg/bson/codecs/configuration/ChildCodecRegistry;
            aload 2 /* that */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.parent:Lorg/bson/codecs/configuration/ChildCodecRegistry;
            invokevirtual org.bson.codecs.configuration.ChildCodecRegistry.equals:(Ljava/lang/Object;)Z
            ifne 10
            goto 9
      StackMap locals:
      StackMap stack:
         8: aload 2 /* that */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.parent:Lorg/bson/codecs/configuration/ChildCodecRegistry;
            ifnull 10
         9: .line 84
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        10: .line 86
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.registry:Lorg/bson/codecs/configuration/ProvidersCodecRegistry;
            aload 2 /* that */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.registry:Lorg/bson/codecs/configuration/ProvidersCodecRegistry;
            invokevirtual org.bson.codecs.configuration.ProvidersCodecRegistry.equals:(Ljava/lang/Object;)Z
            ifne 12
        11: .line 87
            iconst_0
            ireturn
        12: .line 90
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // org.bson.codecs.configuration.ChildCodecRegistry that
        end local 1 // java.lang.Object o
        end local 0 // org.bson.codecs.configuration.ChildCodecRegistry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/bson/codecs/configuration/ChildCodecRegistry<TT;>;
            0   13     1     o  Ljava/lang/Object;
            5   13     2  that  Lorg/bson/codecs/configuration/ChildCodecRegistry<*>;
    MethodParameters:
      Name  Flags
      o     final

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.bson.codecs.configuration.ChildCodecRegistry this
         0: .line 95
            aload 0 /* this */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.parent:Lorg/bson/codecs/configuration/ChildCodecRegistry;
            ifnull 1
            aload 0 /* this */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.parent:Lorg/bson/codecs/configuration/ChildCodecRegistry;
            invokevirtual org.bson.codecs.configuration.ChildCodecRegistry.hashCode:()I
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 1 /* result */
        start local 1 // int result
         3: .line 96
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.registry:Lorg/bson/codecs/configuration/ProvidersCodecRegistry;
            invokevirtual org.bson.codecs.configuration.ProvidersCodecRegistry.hashCode:()I
            iadd
            istore 1 /* result */
         4: .line 97
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.bson.codecs.configuration.ChildCodecRegistry.codecClass:Ljava/lang/Class;
            invokevirtual java.lang.Object.hashCode:()I
            iadd
            istore 1 /* result */
         5: .line 98
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.bson.codecs.configuration.ChildCodecRegistry this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/bson/codecs/configuration/ChildCodecRegistry<TT;>;
            3    6     1  result  I
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lorg/bson/codecs/configuration/CodecRegistry;
SourceFile: "ChildCodecRegistry.java"