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=7, locals=7, 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 112
            aload 1 /* b */
            ifnonnull 2
         1: .line 113
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 114
      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 115
            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 116
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         5: .line 118
      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 119
            iconst_m1
            ireturn
         7: .line 122
      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 123
            iload 3 /* len */
            iload 4 /* avail */
            if_icmple 10
         9: .line 124
            iload 4 /* avail */
            istore 3 /* len */
        10: .line 126
      StackMap locals: int
      StackMap stack:
            iload 3 /* len */
            ifgt 12
        11: .line 127
            iconst_0
            ireturn
        12: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.StringBufferInputStream.buffer:Ljava/lang/String;
            astore 5 /* s */
        start local 5 // java.lang.String s
        13: .line 130
            iload 3 /* len */
            istore 6 /* cnt */
        start local 6 // int cnt
        14: .line 131
            goto 16
        15: .line 132
      StackMap locals: java.lang.String int
      StackMap stack:
            aload 1 /* b */
            iload 2 /* off */
            iinc 2 /* off */ 1
            aload 5 /* s */
            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
            i2b
            bastore
        16: .line 131
      StackMap locals:
      StackMap stack:
            iinc 6 /* cnt */ -1
            iload 6 /* cnt */
            ifge 15
        17: .line 135
            iload 3 /* len */
            ireturn
        end local 6 // int cnt
        end local 5 // java.lang.String s
        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   18     0   this  Ljava/io/StringBufferInputStream;
            0   18     1      b  [B
            0   18     2    off  I
            0   18     3    len  I
            8   18     4  avail  I
           13   18     5      s  Ljava/lang/String;
           14   18     6    cnt  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 146
            lload 1 /* n */
            lconst_0
            lcmp
            ifge 2
         1: .line 147
            lconst_0
            lreturn
         2: .line 149
      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 150
            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 152
      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 153
            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 164
            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 172
            aload 0 /* this */
            iconst_0
            putfield java.io.StringBufferInputStream.pos:I
         1: .line 173
            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()