public final class com.fasterxml.aalto.util.BufferRecycler
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.fasterxml.aalto.util.BufferRecycler
  super_class: java.lang.Object
{
  private volatile char[] mSmallCBuffer;
    descriptor: [C
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile char[] mMediumCBuffer;
    descriptor: [C
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile char[] mFullCBuffer;
    descriptor: [C
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile byte[] mFullBBuffer;
    descriptor: [B
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.util.BufferRecycler this
         0: .line 27
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 21
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.BufferRecycler.mSmallCBuffer:[C
         2: .line 22
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.BufferRecycler.mMediumCBuffer:[C
         3: .line 23
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.BufferRecycler.mFullCBuffer:[C
         4: .line 25
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.BufferRecycler.mFullBBuffer:[B
         5: .line 27
            return
        end local 0 // com.fasterxml.aalto.util.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/fasterxml/aalto/util/BufferRecycler;

  public synchronized char[] getSmallCBuffer(int);
    descriptor: (I)[C
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.util.BufferRecycler this
        start local 1 // int minSize
         0: .line 35
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.BufferRecycler.mSmallCBuffer:[C
            astore 2 /* result */
        start local 2 // char[] result
         1: .line 36
            aload 2 /* result */
            ifnull 4
            aload 2 /* result */
            arraylength
            iload 1 /* minSize */
            if_icmplt 4
         2: .line 37
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.BufferRecycler.mSmallCBuffer:[C
         3: .line 38
            aload 2 /* result */
            areturn
         4: .line 40
      StackMap locals: char[]
      StackMap stack:
            aconst_null
            areturn
        end local 2 // char[] result
        end local 1 // int minSize
        end local 0 // com.fasterxml.aalto.util.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/fasterxml/aalto/util/BufferRecycler;
            0    5     1  minSize  I
            1    5     2   result  [C
    MethodParameters:
         Name  Flags
      minSize  

  public synchronized void returnSmallCBuffer(char[]);
    descriptor: ([C)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.aalto.util.BufferRecycler this
        start local 1 // char[] buffer
         0: .line 45
            aload 0 /* this */
            aload 1 /* buffer */
            putfield com.fasterxml.aalto.util.BufferRecycler.mSmallCBuffer:[C
         1: .line 46
            return
        end local 1 // char[] buffer
        end local 0 // com.fasterxml.aalto.util.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/fasterxml/aalto/util/BufferRecycler;
            0    2     1  buffer  [C
    MethodParameters:
        Name  Flags
      buffer  

  public synchronized char[] getMediumCBuffer(int);
    descriptor: (I)[C
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.util.BufferRecycler this
        start local 1 // int minSize
         0: .line 52
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.BufferRecycler.mMediumCBuffer:[C
            astore 2 /* result */
        start local 2 // char[] result
         1: .line 53
            aload 2 /* result */
            ifnull 4
            aload 2 /* result */
            arraylength
            iload 1 /* minSize */
            if_icmplt 4
         2: .line 54
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.BufferRecycler.mMediumCBuffer:[C
         3: .line 55
            aload 2 /* result */
            areturn
         4: .line 57
      StackMap locals: char[]
      StackMap stack:
            aconst_null
            areturn
        end local 2 // char[] result
        end local 1 // int minSize
        end local 0 // com.fasterxml.aalto.util.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/fasterxml/aalto/util/BufferRecycler;
            0    5     1  minSize  I
            1    5     2   result  [C
    MethodParameters:
         Name  Flags
      minSize  

  public synchronized void returnMediumCBuffer(char[]);
    descriptor: ([C)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.aalto.util.BufferRecycler this
        start local 1 // char[] buffer
         0: .line 62
            aload 0 /* this */
            aload 1 /* buffer */
            putfield com.fasterxml.aalto.util.BufferRecycler.mMediumCBuffer:[C
         1: .line 63
            return
        end local 1 // char[] buffer
        end local 0 // com.fasterxml.aalto.util.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/fasterxml/aalto/util/BufferRecycler;
            0    2     1  buffer  [C
    MethodParameters:
        Name  Flags
      buffer  

  public synchronized char[] getFullCBuffer(int);
    descriptor: (I)[C
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.util.BufferRecycler this
        start local 1 // int minSize
         0: .line 69
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.BufferRecycler.mFullCBuffer:[C
            astore 2 /* result */
        start local 2 // char[] result
         1: .line 70
            aload 2 /* result */
            ifnull 4
            aload 2 /* result */
            arraylength
            iload 1 /* minSize */
            if_icmplt 4
         2: .line 71
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.BufferRecycler.mFullCBuffer:[C
         3: .line 72
            aload 2 /* result */
            areturn
         4: .line 74
      StackMap locals: char[]
      StackMap stack:
            aconst_null
            areturn
        end local 2 // char[] result
        end local 1 // int minSize
        end local 0 // com.fasterxml.aalto.util.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/fasterxml/aalto/util/BufferRecycler;
            0    5     1  minSize  I
            1    5     2   result  [C
    MethodParameters:
         Name  Flags
      minSize  

  public synchronized void returnFullCBuffer(char[]);
    descriptor: ([C)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.aalto.util.BufferRecycler this
        start local 1 // char[] buffer
         0: .line 79
            aload 0 /* this */
            aload 1 /* buffer */
            putfield com.fasterxml.aalto.util.BufferRecycler.mFullCBuffer:[C
         1: .line 80
            return
        end local 1 // char[] buffer
        end local 0 // com.fasterxml.aalto.util.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/fasterxml/aalto/util/BufferRecycler;
            0    2     1  buffer  [C
    MethodParameters:
        Name  Flags
      buffer  

  public synchronized byte[] getFullBBuffer(int);
    descriptor: (I)[B
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.util.BufferRecycler this
        start local 1 // int minSize
         0: .line 88
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.BufferRecycler.mFullBBuffer:[B
            astore 2 /* result */
        start local 2 // byte[] result
         1: .line 89
            aload 2 /* result */
            ifnull 4
            aload 2 /* result */
            arraylength
            iload 1 /* minSize */
            if_icmplt 4
         2: .line 90
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.BufferRecycler.mFullBBuffer:[B
         3: .line 91
            aload 2 /* result */
            areturn
         4: .line 93
      StackMap locals: byte[]
      StackMap stack:
            aconst_null
            areturn
        end local 2 // byte[] result
        end local 1 // int minSize
        end local 0 // com.fasterxml.aalto.util.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/fasterxml/aalto/util/BufferRecycler;
            0    5     1  minSize  I
            1    5     2   result  [B
    MethodParameters:
         Name  Flags
      minSize  

  public synchronized void returnFullBBuffer(byte[]);
    descriptor: ([B)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.aalto.util.BufferRecycler this
        start local 1 // byte[] buffer
         0: .line 98
            aload 0 /* this */
            aload 1 /* buffer */
            putfield com.fasterxml.aalto.util.BufferRecycler.mFullBBuffer:[B
         1: .line 99
            return
        end local 1 // byte[] buffer
        end local 0 // com.fasterxml.aalto.util.BufferRecycler this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/fasterxml/aalto/util/BufferRecycler;
            0    2     1  buffer  [B
    MethodParameters:
        Name  Flags
      buffer  
}
SourceFile: "BufferRecycler.java"