final class org.apache.lucene.index.BinaryDocValuesFieldUpdates extends org.apache.lucene.index.DocValuesFieldUpdates
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.index.BinaryDocValuesFieldUpdates
  super_class: org.apache.lucene.index.DocValuesFieldUpdates
{
  private org.apache.lucene.util.packed.PagedGrowableWriter offsets;
    descriptor: Lorg/apache/lucene/util/packed/PagedGrowableWriter;
    flags: (0x0002) ACC_PRIVATE

  private org.apache.lucene.util.packed.PagedGrowableWriter lengths;
    descriptor: Lorg/apache/lucene/util/packed/PagedGrowableWriter;
    flags: (0x0002) ACC_PRIVATE

  private org.apache.lucene.util.BytesRefBuilder values;
    descriptor: Lorg/apache/lucene/util/BytesRefBuilder;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(long, java.lang.String, int);
    descriptor: (JLjava/lang/String;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=5, args_size=4
        start local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
        start local 1 // long delGen
        start local 3 // java.lang.String field
        start local 4 // int maxDoc
         0: .line 73
            aload 0 /* this */
            iload 4 /* maxDoc */
            lload 1 /* delGen */
            aload 3 /* field */
            getstatic org.apache.lucene.index.DocValuesType.BINARY:Lorg/apache/lucene/index/DocValuesType;
            invokespecial org.apache.lucene.index.DocValuesFieldUpdates.<init>:(IJLjava/lang/String;Lorg/apache/lucene/index/DocValuesType;)V
         1: .line 74
            aload 0 /* this */
            new org.apache.lucene.util.packed.PagedGrowableWriter
            dup
            lconst_1
            sipush 1024
            iconst_1
            ldc 0.5
            invokespecial org.apache.lucene.util.packed.PagedGrowableWriter.<init>:(JIIF)V
            putfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.offsets:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
         2: .line 75
            aload 0 /* this */
            new org.apache.lucene.util.packed.PagedGrowableWriter
            dup
            lconst_1
            sipush 1024
            iconst_1
            ldc 0.5
            invokespecial org.apache.lucene.util.packed.PagedGrowableWriter.<init>:(JIIF)V
            putfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.lengths:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
         3: .line 76
            aload 0 /* this */
            new org.apache.lucene.util.BytesRefBuilder
            dup
            invokespecial org.apache.lucene.util.BytesRefBuilder.<init>:()V
            putfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.values:Lorg/apache/lucene/util/BytesRefBuilder;
         4: .line 77
            return
        end local 4 // int maxDoc
        end local 3 // java.lang.String field
        end local 1 // long delGen
        end local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/apache/lucene/index/BinaryDocValuesFieldUpdates;
            0    5     1  delGen  J
            0    5     3   field  Ljava/lang/String;
            0    5     4  maxDoc  I
    MethodParameters:
        Name  Flags
      delGen  
      field   
      maxDoc  

  public void add(int, long);
    descriptor: (IJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
        start local 1 // int doc
        start local 2 // long value
         0: .line 81
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 2 // long value
        end local 1 // int doc
        end local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/lucene/index/BinaryDocValuesFieldUpdates;
            0    1     1    doc  I
            0    1     2  value  J
    MethodParameters:
       Name  Flags
      doc    
      value  

  public void add(int, org.apache.lucene.index.DocValuesFieldUpdates$Iterator);
    descriptor: (ILorg/apache/lucene/index/DocValuesFieldUpdates$Iterator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
        start local 1 // int docId
        start local 2 // org.apache.lucene.index.DocValuesFieldUpdates$Iterator iterator
         0: .line 86
            aload 0 /* this */
            iload 1 /* docId */
            aload 2 /* iterator */
            invokevirtual org.apache.lucene.index.DocValuesFieldUpdates$Iterator.binaryValue:()Lorg/apache/lucene/util/BytesRef;
            invokevirtual org.apache.lucene.index.BinaryDocValuesFieldUpdates.add:(ILorg/apache/lucene/util/BytesRef;)V
         1: .line 87
            return
        end local 2 // org.apache.lucene.index.DocValuesFieldUpdates$Iterator iterator
        end local 1 // int docId
        end local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/lucene/index/BinaryDocValuesFieldUpdates;
            0    2     1     docId  I
            0    2     2  iterator  Lorg/apache/lucene/index/DocValuesFieldUpdates$Iterator;
    MethodParameters:
          Name  Flags
      docId     
      iterator  

  public synchronized void add(int, org.apache.lucene.util.BytesRef);
    descriptor: (ILorg/apache/lucene/util/BytesRef;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
        start local 1 // int doc
        start local 2 // org.apache.lucene.util.BytesRef value
         0: .line 91
            aload 0 /* this */
            iload 1 /* doc */
            invokevirtual org.apache.lucene.index.BinaryDocValuesFieldUpdates.add:(I)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 92
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.offsets:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            iload 3 /* index */
            i2l
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.values:Lorg/apache/lucene/util/BytesRefBuilder;
            invokevirtual org.apache.lucene.util.BytesRefBuilder.length:()I
            i2l
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.set:(JJ)V
         2: .line 93
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.lengths:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            iload 3 /* index */
            i2l
            aload 2 /* value */
            getfield org.apache.lucene.util.BytesRef.length:I
            i2l
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.set:(JJ)V
         3: .line 94
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.values:Lorg/apache/lucene/util/BytesRefBuilder;
            aload 2 /* value */
            invokevirtual org.apache.lucene.util.BytesRefBuilder.append:(Lorg/apache/lucene/util/BytesRef;)V
         4: .line 95
            return
        end local 3 // int index
        end local 2 // org.apache.lucene.util.BytesRef value
        end local 1 // int doc
        end local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/lucene/index/BinaryDocValuesFieldUpdates;
            0    5     1    doc  I
            0    5     2  value  Lorg/apache/lucene/util/BytesRef;
            1    5     3  index  I
    MethodParameters:
       Name  Flags
      doc    
      value  

  protected void swap(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=7, args_size=3
        start local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
        start local 1 // int i
        start local 2 // int j
         0: .line 99
            aload 0 /* this */
            iload 1 /* i */
            iload 2 /* j */
            invokespecial org.apache.lucene.index.DocValuesFieldUpdates.swap:(II)V
         1: .line 101
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.offsets:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            iload 2 /* j */
            i2l
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.get:(J)J
            lstore 3 /* tmpOffset */
        start local 3 // long tmpOffset
         2: .line 102
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.offsets:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            iload 2 /* j */
            i2l
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.offsets:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            iload 1 /* i */
            i2l
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.get:(J)J
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.set:(JJ)V
         3: .line 103
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.offsets:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            iload 1 /* i */
            i2l
            lload 3 /* tmpOffset */
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.set:(JJ)V
         4: .line 105
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.lengths:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            iload 2 /* j */
            i2l
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.get:(J)J
            lstore 5 /* tmpLength */
        start local 5 // long tmpLength
         5: .line 106
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.lengths:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            iload 2 /* j */
            i2l
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.lengths:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            iload 1 /* i */
            i2l
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.get:(J)J
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.set:(JJ)V
         6: .line 107
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.lengths:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            iload 1 /* i */
            i2l
            lload 5 /* tmpLength */
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.set:(JJ)V
         7: .line 108
            return
        end local 5 // long tmpLength
        end local 3 // long tmpOffset
        end local 2 // int j
        end local 1 // int i
        end local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lorg/apache/lucene/index/BinaryDocValuesFieldUpdates;
            0    8     1          i  I
            0    8     2          j  I
            2    8     3  tmpOffset  J
            5    8     5  tmpLength  J
    MethodParameters:
      Name  Flags
      i     
      j     

  protected void grow(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
        start local 1 // int size
         0: .line 112
            aload 0 /* this */
            iload 1 /* size */
            invokespecial org.apache.lucene.index.DocValuesFieldUpdates.grow:(I)V
         1: .line 113
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.offsets:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            iload 1 /* size */
            i2l
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.grow:(J)Lorg/apache/lucene/util/packed/AbstractPagedMutable;
            checkcast org.apache.lucene.util.packed.PagedGrowableWriter
            putfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.offsets:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
         2: .line 114
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.lengths:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            iload 1 /* size */
            i2l
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.grow:(J)Lorg/apache/lucene/util/packed/AbstractPagedMutable;
            checkcast org.apache.lucene.util.packed.PagedGrowableWriter
            putfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.lengths:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
         3: .line 115
            return
        end local 1 // int size
        end local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/index/BinaryDocValuesFieldUpdates;
            0    4     1  size  I
    MethodParameters:
      Name  Flags
      size  

  protected void resize(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
        start local 1 // int size
         0: .line 119
            aload 0 /* this */
            iload 1 /* size */
            invokespecial org.apache.lucene.index.DocValuesFieldUpdates.resize:(I)V
         1: .line 120
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.offsets:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            iload 1 /* size */
            i2l
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.resize:(J)Lorg/apache/lucene/util/packed/AbstractPagedMutable;
            checkcast org.apache.lucene.util.packed.PagedGrowableWriter
            putfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.offsets:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
         2: .line 121
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.lengths:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            iload 1 /* size */
            i2l
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.resize:(J)Lorg/apache/lucene/util/packed/AbstractPagedMutable;
            checkcast org.apache.lucene.util.packed.PagedGrowableWriter
            putfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.lengths:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
         3: .line 122
            return
        end local 1 // int size
        end local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/index/BinaryDocValuesFieldUpdates;
            0    4     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public org.apache.lucene.index.BinaryDocValuesFieldUpdates$Iterator iterator();
    descriptor: ()Lorg/apache/lucene/index/BinaryDocValuesFieldUpdates$Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=1, args_size=1
        start local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
         0: .line 126
            aload 0 /* this */
            invokevirtual org.apache.lucene.index.BinaryDocValuesFieldUpdates.ensureFinished:()V
         1: .line 127
            new org.apache.lucene.index.BinaryDocValuesFieldUpdates$Iterator
            dup
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.size:I
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.offsets:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.lengths:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.docs:Lorg/apache/lucene/util/packed/PagedMutable;
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.values:Lorg/apache/lucene/util/BytesRefBuilder;
            invokevirtual org.apache.lucene.util.BytesRefBuilder.get:()Lorg/apache/lucene/util/BytesRef;
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.delGen:J
            invokespecial org.apache.lucene.index.BinaryDocValuesFieldUpdates$Iterator.<init>:(ILorg/apache/lucene/util/packed/PagedGrowableWriter;Lorg/apache/lucene/util/packed/PagedGrowableWriter;Lorg/apache/lucene/util/packed/PagedMutable;Lorg/apache/lucene/util/BytesRef;J)V
            areturn
        end local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/index/BinaryDocValuesFieldUpdates;

  public long ramBytesUsed();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
         0: .line 132
            aload 0 /* this */
            invokespecial org.apache.lucene.index.DocValuesFieldUpdates.ramBytesUsed:()J
         1: .line 133
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.offsets:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.ramBytesUsed:()J
         2: .line 132
            ladd
         3: .line 134
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.lengths:Lorg/apache/lucene/util/packed/PagedGrowableWriter;
            invokevirtual org.apache.lucene.util.packed.PagedGrowableWriter.ramBytesUsed:()J
         4: .line 132
            ladd
         5: .line 135
            getstatic org.apache.lucene.util.RamUsageEstimator.NUM_BYTES_OBJECT_HEADER:I
            i2l
         6: .line 132
            ladd
         7: .line 136
            ldc 8
         8: .line 132
            ladd
         9: .line 137
            iconst_3
            getstatic org.apache.lucene.util.RamUsageEstimator.NUM_BYTES_OBJECT_REF:I
            imul
            i2l
        10: .line 132
            ladd
        11: .line 138
            aload 0 /* this */
            getfield org.apache.lucene.index.BinaryDocValuesFieldUpdates.values:Lorg/apache/lucene/util/BytesRefBuilder;
            invokevirtual org.apache.lucene.util.BytesRefBuilder.bytes:()[B
            arraylength
            i2l
        12: .line 132
            ladd
            lreturn
        end local 0 // org.apache.lucene.index.BinaryDocValuesFieldUpdates this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/apache/lucene/index/BinaryDocValuesFieldUpdates;

  public org.apache.lucene.index.DocValuesFieldUpdates$Iterator iterator();
    descriptor: ()Lorg/apache/lucene/index/DocValuesFieldUpdates$Iterator;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.apache.lucene.index.BinaryDocValuesFieldUpdates.iterator:()Lorg/apache/lucene/index/BinaryDocValuesFieldUpdates$Iterator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "BinaryDocValuesFieldUpdates.java"
NestMembers:
  org.apache.lucene.index.BinaryDocValuesFieldUpdates$Iterator
InnerClasses:
  final Iterator = org.apache.lucene.index.BinaryDocValuesFieldUpdates$Iterator of org.apache.lucene.index.BinaryDocValuesFieldUpdates
  abstract Iterator = org.apache.lucene.index.DocValuesFieldUpdates$Iterator of org.apache.lucene.index.DocValuesFieldUpdates