public class java.io.StringBufferInputStream extends java.io.InputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.io.StringBufferInputStream
  super_class: java.io.InputStream
{
  protected java.lang.String buffer;
    descriptor: Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED

  protected int pos;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int count;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.StringBufferInputStream this
        start local 1 // java.lang.String s
         0: .line 72
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 73
            aload 0 /* this */
            aload 1 /* s */
            putfield java.io.StringBufferInputStream.buffer:Ljava/lang/String;
         2: .line 74
            aload 0 /* this */
            aload 1 /* s */
            invokevirtual java.lang.String.length:()I
            putfield java.io.StringBufferInputStream.count:I
         3: .line 75
            return
        end local 1 // java.lang.String s
        end local 0 // java.io.StringBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/StringBufferInputStream;
            0    4     1     s  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      s     

  public synchronized int read();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // java.io.StringBufferInputStream this
         0: .line 92
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.pos:I
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.count:I
            if_icmpge 1
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.buffer:Ljava/lang/String;
            aload 0 /* this */
            dup
            getfield java.io.StringBufferInputStream.pos:I
            dup_x1
            iconst_1
            iadd
            putfield java.io.StringBufferInputStream.pos:I
            invokevirtual java.lang.String.charAt:(I)C
            sipush 255
            iand
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_m1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // java.io.StringBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/io/StringBufferInputStream;

  public synchronized int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // java.io.StringBufferInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 113
            aload 1 /* b */
            ifnonnull 2
         1: .line 114
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 115
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iflt 4
            iload 2 /* off */
            aload 1 /* b */
            arraylength
            if_icmpgt 4
            iload 3 /* len */
            iflt 4
         3: .line 116
            iload 2 /* off */
            iload 3 /* len */
            iadd
            aload 1 /* b */
            arraylength
            if_icmpgt 4
            iload 2 /* off */
            iload 3 /* len */
            iadd
            ifge 5
         4: .line 117
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         5: .line 119
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.pos:I
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.count:I
            if_icmplt 7
         6: .line 120
            iconst_m1
            ireturn
         7: .line 123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.count:I
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.pos:I
            isub
            istore 4 /* avail */
        start local 4 // int avail
         8: .line 124
            iload 3 /* len */
            iload 4 /* avail */
            if_icmple 10
         9: .line 125
            iload 4 /* avail */
            istore 3 /* len */
        10: .line 127
      StackMap locals: int
      StackMap stack:
            iload 3 /* len */
            ifgt 12
        11: .line 128
            iconst_0
            ireturn
        12: .line 130
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.buffer:Ljava/lang/String;
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.pos:I
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.pos:I
            iload 3 /* len */
            iadd
            aload 1 /* b */
            iload 2 /* off */
            invokevirtual java.lang.String.getBytes:(II[BI)V
        13: .line 131
            aload 0 /* this */
            dup
            getfield java.io.StringBufferInputStream.pos:I
            iload 3 /* len */
            iadd
            putfield java.io.StringBufferInputStream.pos:I
        14: .line 132
            iload 3 /* len */
            ireturn
        end local 4 // int avail
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.io.StringBufferInputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Ljava/io/StringBufferInputStream;
            0   15     1      b  [B
            0   15     2    off  I
            0   15     3    len  I
            8   15     4  avail  I
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public synchronized long skip(long);
    descriptor: (J)J
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.io.StringBufferInputStream this
        start local 1 // long n
         0: .line 143
            lload 1 /* n */
            lconst_0
            lcmp
            ifge 2
         1: .line 144
            lconst_0
            lreturn
         2: .line 146
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.count:I
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.pos:I
            isub
            i2l
            lcmp
            ifle 4
         3: .line 147
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.count:I
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.pos:I
            isub
            i2l
            lstore 1 /* n */
         4: .line 149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield java.io.StringBufferInputStream.pos:I
            i2l
            lload 1 /* n */
            ladd
            l2i
            putfield java.io.StringBufferInputStream.pos:I
         5: .line 150
            lload 1 /* n */
            lreturn
        end local 1 // long n
        end local 0 // java.io.StringBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/io/StringBufferInputStream;
            0    6     1     n  J
    MethodParameters:
      Name  Flags
      n     

  public synchronized int available();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.io.StringBufferInputStream this
         0: .line 161
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.count:I
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.pos:I
            isub
            ireturn
        end local 0 // java.io.StringBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/StringBufferInputStream;

  public synchronized void reset();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.io.StringBufferInputStream this
         0: .line 169
            aload 0 /* this */
            iconst_0
            putfield java.io.StringBufferInputStream.pos:I
         1: .line 170
            return
        end local 0 // java.io.StringBufferInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/StringBufferInputStream;
}
SourceFile: "StringBufferInputStream.java"
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()