public class org.apache.lucene.store.ByteArrayDataOutput extends org.apache.lucene.store.DataOutput
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.lucene.store.ByteArrayDataOutput
  super_class: org.apache.lucene.store.DataOutput
{
  private byte[] bytes;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private int pos;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int limit;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 28
            ldc Lorg/apache/lucene/store/ByteArrayDataOutput;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.apache.lucene.store.ByteArrayDataOutput.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.store.ByteArrayDataOutput this
        start local 1 // byte[] bytes
         0: .line 34
            aload 0 /* this */
            invokespecial org.apache.lucene.store.DataOutput.<init>:()V
         1: .line 35
            aload 0 /* this */
            aload 1 /* bytes */
            invokevirtual org.apache.lucene.store.ByteArrayDataOutput.reset:([B)V
         2: .line 36
            return
        end local 1 // byte[] bytes
        end local 0 // org.apache.lucene.store.ByteArrayDataOutput this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/apache/lucene/store/ByteArrayDataOutput;
            0    3     1  bytes  [B
    MethodParameters:
       Name  Flags
      bytes  

  public void <init>(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.apache.lucene.store.ByteArrayDataOutput this
        start local 1 // byte[] bytes
        start local 2 // int offset
        start local 3 // int len
         0: .line 38
            aload 0 /* this */
            invokespecial org.apache.lucene.store.DataOutput.<init>:()V
         1: .line 39
            aload 0 /* this */
            aload 1 /* bytes */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual org.apache.lucene.store.ByteArrayDataOutput.reset:([BII)V
         2: .line 40
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] bytes
        end local 0 // org.apache.lucene.store.ByteArrayDataOutput this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/lucene/store/ByteArrayDataOutput;
            0    3     1   bytes  [B
            0    3     2  offset  I
            0    3     3     len  I
    MethodParameters:
        Name  Flags
      bytes   
      offset  
      len     

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.ByteArrayDataOutput this
         0: .line 42
            aload 0 /* this */
            invokespecial org.apache.lucene.store.DataOutput.<init>:()V
         1: .line 43
            aload 0 /* this */
            getstatic org.apache.lucene.util.BytesRef.EMPTY_BYTES:[B
            invokevirtual org.apache.lucene.store.ByteArrayDataOutput.reset:([B)V
         2: .line 44
            return
        end local 0 // org.apache.lucene.store.ByteArrayDataOutput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/store/ByteArrayDataOutput;

  public void reset(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.lucene.store.ByteArrayDataOutput this
        start local 1 // byte[] bytes
         0: .line 47
            aload 0 /* this */
            aload 1 /* bytes */
            iconst_0
            aload 1 /* bytes */
            arraylength
            invokevirtual org.apache.lucene.store.ByteArrayDataOutput.reset:([BII)V
         1: .line 48
            return
        end local 1 // byte[] bytes
        end local 0 // org.apache.lucene.store.ByteArrayDataOutput this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/lucene/store/ByteArrayDataOutput;
            0    2     1  bytes  [B
    MethodParameters:
       Name  Flags
      bytes  

  public void reset(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.apache.lucene.store.ByteArrayDataOutput this
        start local 1 // byte[] bytes
        start local 2 // int offset
        start local 3 // int len
         0: .line 51
            aload 0 /* this */
            aload 1 /* bytes */
            putfield org.apache.lucene.store.ByteArrayDataOutput.bytes:[B
         1: .line 52
            aload 0 /* this */
            iload 2 /* offset */
            putfield org.apache.lucene.store.ByteArrayDataOutput.pos:I
         2: .line 53
            aload 0 /* this */
            iload 2 /* offset */
            iload 3 /* len */
            iadd
            putfield org.apache.lucene.store.ByteArrayDataOutput.limit:I
         3: .line 54
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] bytes
        end local 0 // org.apache.lucene.store.ByteArrayDataOutput this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/apache/lucene/store/ByteArrayDataOutput;
            0    4     1   bytes  [B
            0    4     2  offset  I
            0    4     3     len  I
    MethodParameters:
        Name  Flags
      bytes   
      offset  
      len     

  public int getPosition();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.ByteArrayDataOutput this
         0: .line 57
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataOutput.pos:I
            ireturn
        end local 0 // org.apache.lucene.store.ByteArrayDataOutput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/store/ByteArrayDataOutput;

  public void writeByte(byte);
    descriptor: (B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.lucene.store.ByteArrayDataOutput this
        start local 1 // byte b
         0: .line 62
            getstatic org.apache.lucene.store.ByteArrayDataOutput.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataOutput.pos:I
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataOutput.limit:I
            if_icmplt 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 63
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataOutput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataOutput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataOutput.pos:I
            iload 1 /* b */
            bastore
         2: .line 64
            return
        end local 1 // byte b
        end local 0 // org.apache.lucene.store.ByteArrayDataOutput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/store/ByteArrayDataOutput;
            0    3     1     b  B
    MethodParameters:
      Name  Flags
      b     

  public void writeBytes(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.apache.lucene.store.ByteArrayDataOutput this
        start local 1 // byte[] b
        start local 2 // int offset
        start local 3 // int length
         0: .line 68
            getstatic org.apache.lucene.store.ByteArrayDataOutput.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataOutput.pos:I
            iload 3 /* length */
            iadd
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataOutput.limit:I
            if_icmple 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 69
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            iload 2 /* offset */
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataOutput.bytes:[B
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataOutput.pos:I
            iload 3 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 70
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataOutput.pos:I
            iload 3 /* length */
            iadd
            putfield org.apache.lucene.store.ByteArrayDataOutput.pos:I
         3: .line 71
            return
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] b
        end local 0 // org.apache.lucene.store.ByteArrayDataOutput this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/apache/lucene/store/ByteArrayDataOutput;
            0    4     1       b  [B
            0    4     2  offset  I
            0    4     3  length  I
    MethodParameters:
        Name  Flags
      b       
      offset  
      length  
}
SourceFile: "ByteArrayDataOutput.java"