class org.apache.commons.lang.Entities$BinaryEntityMap extends org.apache.commons.lang.Entities$ArrayEntityMap
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.commons.lang.Entities$BinaryEntityMap
  super_class: org.apache.commons.lang.Entities$ArrayEntityMap
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.lang.Entities$BinaryEntityMap this
         0: .line 673
            aload 0 /* this */
            invokespecial org.apache.commons.lang.Entities$ArrayEntityMap.<init>:()V
         1: .line 674
            return
        end local 0 // org.apache.commons.lang.Entities$BinaryEntityMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/lang/Entities$BinaryEntityMap;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.lang.Entities$BinaryEntityMap this
        start local 1 // int growBy
         0: .line 684
            aload 0 /* this */
            iload 1 /* growBy */
            invokespecial org.apache.commons.lang.Entities$ArrayEntityMap.<init>:(I)V
         1: .line 685
            return
        end local 1 // int growBy
        end local 0 // org.apache.commons.lang.Entities$BinaryEntityMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/commons/lang/Entities$BinaryEntityMap;
            0    2     1  growBy  I
    MethodParameters:
        Name  Flags
      growBy  

  private int binarySearch(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.apache.commons.lang.Entities$BinaryEntityMap this
        start local 1 // int key
         0: .line 696
            iconst_0
            istore 2 /* low */
        start local 2 // int low
         1: .line 697
            aload 0 /* this */
            getfield org.apache.commons.lang.Entities$BinaryEntityMap.size:I
            iconst_1
            isub
            istore 3 /* high */
        start local 3 // int high
         2: .line 699
            goto 12
         3: .line 700
      StackMap locals: int int
      StackMap stack:
            iload 2 /* low */
            iload 3 /* high */
            iadd
            iconst_1
            iushr
            istore 4 /* mid */
        start local 4 // int mid
         4: .line 701
            aload 0 /* this */
            getfield org.apache.commons.lang.Entities$BinaryEntityMap.values:[I
            iload 4 /* mid */
            iaload
            istore 5 /* midVal */
        start local 5 // int midVal
         5: .line 703
            iload 5 /* midVal */
            iload 1 /* key */
            if_icmpge 8
         6: .line 704
            iload 4 /* mid */
            iconst_1
            iadd
            istore 2 /* low */
         7: .line 705
            goto 12
      StackMap locals: int int
      StackMap stack:
         8: iload 5 /* midVal */
            iload 1 /* key */
            if_icmple 11
         9: .line 706
            iload 4 /* mid */
            iconst_1
            isub
            istore 3 /* high */
        10: .line 707
            goto 12
        11: .line 708
      StackMap locals:
      StackMap stack:
            iload 4 /* mid */
            ireturn
        end local 5 // int midVal
        end local 4 // int mid
        12: .line 699
      StackMap locals:
      StackMap stack:
            iload 2 /* low */
            iload 3 /* high */
            if_icmple 3
        13: .line 711
            iload 2 /* low */
            iconst_1
            iadd
            ineg
            ireturn
        end local 3 // int high
        end local 2 // int low
        end local 1 // int key
        end local 0 // org.apache.commons.lang.Entities$BinaryEntityMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lorg/apache/commons/lang/Entities$BinaryEntityMap;
            0   14     1     key  I
            1   14     2     low  I
            2   14     3    high  I
            4   12     4     mid  I
            5   12     5  midVal  I
    MethodParameters:
      Name  Flags
      key   

  public void add(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.apache.commons.lang.Entities$BinaryEntityMap this
        start local 1 // java.lang.String name
        start local 2 // int value
         0: .line 718
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.lang.Entities$BinaryEntityMap.size:I
            iconst_1
            iadd
            invokevirtual org.apache.commons.lang.Entities$BinaryEntityMap.ensureCapacity:(I)V
         1: .line 719
            aload 0 /* this */
            iload 2 /* value */
            invokevirtual org.apache.commons.lang.Entities$BinaryEntityMap.binarySearch:(I)I
            istore 3 /* insertAt */
        start local 3 // int insertAt
         2: .line 720
            iload 3 /* insertAt */
            ifle 4
         3: .line 721
            return
         4: .line 723
      StackMap locals: int
      StackMap stack:
            iload 3 /* insertAt */
            iconst_1
            iadd
            ineg
            istore 3 /* insertAt */
         5: .line 724
            aload 0 /* this */
            getfield org.apache.commons.lang.Entities$BinaryEntityMap.values:[I
            iload 3 /* insertAt */
            aload 0 /* this */
            getfield org.apache.commons.lang.Entities$BinaryEntityMap.values:[I
            iload 3 /* insertAt */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.commons.lang.Entities$BinaryEntityMap.size:I
            iload 3 /* insertAt */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 725
            aload 0 /* this */
            getfield org.apache.commons.lang.Entities$BinaryEntityMap.values:[I
            iload 3 /* insertAt */
            iload 2 /* value */
            iastore
         7: .line 726
            aload 0 /* this */
            getfield org.apache.commons.lang.Entities$BinaryEntityMap.names:[Ljava/lang/String;
            iload 3 /* insertAt */
            aload 0 /* this */
            getfield org.apache.commons.lang.Entities$BinaryEntityMap.names:[Ljava/lang/String;
            iload 3 /* insertAt */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.commons.lang.Entities$BinaryEntityMap.size:I
            iload 3 /* insertAt */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 727
            aload 0 /* this */
            getfield org.apache.commons.lang.Entities$BinaryEntityMap.names:[Ljava/lang/String;
            iload 3 /* insertAt */
            aload 1 /* name */
            aastore
         9: .line 728
            aload 0 /* this */
            dup
            getfield org.apache.commons.lang.Entities$BinaryEntityMap.size:I
            iconst_1
            iadd
            putfield org.apache.commons.lang.Entities$BinaryEntityMap.size:I
        10: .line 729
            return
        end local 3 // int insertAt
        end local 2 // int value
        end local 1 // java.lang.String name
        end local 0 // org.apache.commons.lang.Entities$BinaryEntityMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lorg/apache/commons/lang/Entities$BinaryEntityMap;
            0   11     1      name  Ljava/lang/String;
            0   11     2     value  I
            2   11     3  insertAt  I
    MethodParameters:
       Name  Flags
      name   
      value  

  public java.lang.String name(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.lang.Entities$BinaryEntityMap this
        start local 1 // int value
         0: .line 735
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual org.apache.commons.lang.Entities$BinaryEntityMap.binarySearch:(I)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 736
            iload 2 /* index */
            ifge 3
         2: .line 737
            aconst_null
            areturn
         3: .line 739
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.lang.Entities$BinaryEntityMap.names:[Ljava/lang/String;
            iload 2 /* index */
            aaload
            areturn
        end local 2 // int index
        end local 1 // int value
        end local 0 // org.apache.commons.lang.Entities$BinaryEntityMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/commons/lang/Entities$BinaryEntityMap;
            0    4     1  value  I
            1    4     2  index  I
    MethodParameters:
       Name  Flags
      value  
}
SourceFile: "Entities.java"
NestHost: org.apache.commons.lang.Entities
InnerClasses:
  ArrayEntityMap = org.apache.commons.lang.Entities$ArrayEntityMap of org.apache.commons.lang.Entities
  BinaryEntityMap = org.apache.commons.lang.Entities$BinaryEntityMap of org.apache.commons.lang.Entities