public class com.fasterxml.jackson.databind.util.ByteBufferBackedOutputStream extends java.io.OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.fasterxml.jackson.databind.util.ByteBufferBackedOutputStream
  super_class: java.io.OutputStream
{
  protected final java.nio.ByteBuffer _b;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  public void <init>(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.databind.util.ByteBufferBackedOutputStream this
        start local 1 // java.nio.ByteBuffer buf
         0: .line 13
            aload 0 /* this */
            invokespecial java.io.OutputStream.<init>:()V
            aload 0 /* this */
            aload 1 /* buf */
            putfield com.fasterxml.jackson.databind.util.ByteBufferBackedOutputStream._b:Ljava/nio/ByteBuffer;
            return
        end local 1 // java.nio.ByteBuffer buf
        end local 0 // com.fasterxml.jackson.databind.util.ByteBufferBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/databind/util/ByteBufferBackedOutputStream;
            0    1     1   buf  Ljava/nio/ByteBuffer;
    MethodParameters:
      Name  Flags
      buf   

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.databind.util.ByteBufferBackedOutputStream this
        start local 1 // int b
         0: .line 15
            aload 0 /* this */
            getfield com.fasterxml.jackson.databind.util.ByteBufferBackedOutputStream._b:Ljava/nio/ByteBuffer;
            iload 1 /* b */
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
            return
        end local 1 // int b
        end local 0 // com.fasterxml.jackson.databind.util.ByteBufferBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/databind/util/ByteBufferBackedOutputStream;
            0    1     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.databind.util.ByteBufferBackedOutputStream this
        start local 1 // byte[] bytes
        start local 2 // int off
        start local 3 // int len
         0: .line 16
            aload 0 /* this */
            getfield com.fasterxml.jackson.databind.util.ByteBufferBackedOutputStream._b:Ljava/nio/ByteBuffer;
            aload 1 /* bytes */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.nio.ByteBuffer.put:([BII)Ljava/nio/ByteBuffer;
            pop
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] bytes
        end local 0 // com.fasterxml.jackson.databind.util.ByteBufferBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/fasterxml/jackson/databind/util/ByteBufferBackedOutputStream;
            0    1     1  bytes  [B
            0    1     2    off  I
            0    1     3    len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      bytes  
      off    
      len    
}
SourceFile: "ByteBufferBackedOutputStream.java"