class org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer
  super_class: java.lang.Object
{
  private byte[] bytes;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private final org.apache.lucene.store.ByteArrayDataOutput bado;
    descriptor: Lorg/apache/lucene/store/ByteArrayDataOutput;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer this
         0: .line 698
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 702
            aload 0 /* this */
            bipush 11
            newarray 8
            putfield org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer.bytes:[B
         2: .line 703
            aload 0 /* this */
            new org.apache.lucene.store.ByteArrayDataOutput
            dup
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer.bytes:[B
            invokespecial org.apache.lucene.store.ByteArrayDataOutput.<init>:([B)V
            putfield org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer.bado:Lorg/apache/lucene/store/ByteArrayDataOutput;
         3: .line 698
            return
        end local 0 // org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/util/fst/Builder$FixedLengthArcsBuffer;

  org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer ensureCapacity(int);
    descriptor: (I)Lorg/apache/lucene/util/fst/Builder$FixedLengthArcsBuffer;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer this
        start local 1 // int capacity
         0: .line 707
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer.bytes:[B
            arraylength
            iload 1 /* capacity */
            if_icmpge 3
         1: .line 708
            aload 0 /* this */
            iload 1 /* capacity */
            iconst_1
            invokestatic org.apache.lucene.util.ArrayUtil.oversize:(II)I
            newarray 8
            putfield org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer.bytes:[B
         2: .line 709
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer.bado:Lorg/apache/lucene/store/ByteArrayDataOutput;
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer.bytes:[B
            invokevirtual org.apache.lucene.store.ByteArrayDataOutput.reset:([B)V
         3: .line 711
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // int capacity
        end local 0 // org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/apache/lucene/util/fst/Builder$FixedLengthArcsBuffer;
            0    4     1  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer resetPosition();
    descriptor: ()Lorg/apache/lucene/util/fst/Builder$FixedLengthArcsBuffer;
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer this
         0: .line 715
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer.bado:Lorg/apache/lucene/store/ByteArrayDataOutput;
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer.bytes:[B
            invokevirtual org.apache.lucene.store.ByteArrayDataOutput.reset:([B)V
         1: .line 716
            aload 0 /* this */
            areturn
        end local 0 // org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/util/fst/Builder$FixedLengthArcsBuffer;

  org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer writeByte(byte);
    descriptor: (B)Lorg/apache/lucene/util/fst/Builder$FixedLengthArcsBuffer;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer this
        start local 1 // byte b
         0: .line 720
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer.bado:Lorg/apache/lucene/store/ByteArrayDataOutput;
            iload 1 /* b */
            invokevirtual org.apache.lucene.store.ByteArrayDataOutput.writeByte:(B)V
         1: .line 721
            aload 0 /* this */
            areturn
        end local 1 // byte b
        end local 0 // org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/util/fst/Builder$FixedLengthArcsBuffer;
            0    2     1     b  B
    MethodParameters:
      Name  Flags
      b     

  org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer writeVInt(int);
    descriptor: (I)Lorg/apache/lucene/util/fst/Builder$FixedLengthArcsBuffer;
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer this
        start local 1 // int i
         0: .line 726
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer.bado:Lorg/apache/lucene/store/ByteArrayDataOutput;
            iload 1 /* i */
            invokevirtual org.apache.lucene.store.ByteArrayDataOutput.writeVInt:(I)V
         1: .line 727
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* e */
        start local 2 // java.io.IOException e
         3: .line 728
            new java.lang.RuntimeException
            dup
            aload 2 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException e
         4: .line 730
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // int i
        end local 0 // org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/lucene/util/fst/Builder$FixedLengthArcsBuffer;
            0    5     1     i  I
            3    4     2     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      i     

  int getPosition();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer this
         0: .line 734
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer.bado:Lorg/apache/lucene/store/ByteArrayDataOutput;
            invokevirtual org.apache.lucene.store.ByteArrayDataOutput.getPosition:()I
            ireturn
        end local 0 // org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/fst/Builder$FixedLengthArcsBuffer;

  byte[] getBytes();
    descriptor: ()[B
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer this
         0: .line 739
            aload 0 /* this */
            getfield org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer.bytes:[B
            areturn
        end local 0 // org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/fst/Builder$FixedLengthArcsBuffer;
}
SourceFile: "Builder.java"
NestHost: org.apache.lucene.util.fst.Builder
InnerClasses:
  FixedLengthArcsBuffer = org.apache.lucene.util.fst.Builder$FixedLengthArcsBuffer of org.apache.lucene.util.fst.Builder