public abstract class java.nio.CharBuffer extends java.nio.Buffer implements java.lang.Comparable<java.nio.CharBuffer>, java.lang.Appendable, java.lang.CharSequence, java.lang.Readable
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: java.nio.CharBuffer
  super_class: java.nio.Buffer
{
  final char[] hb;
    descriptor: [C
    flags: (0x0010) ACC_FINAL

  final int offset;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  boolean isReadOnly;
    descriptor: Z
    flags: (0x0000) 

  void <init>(int, int, int, int, char[], int);
    descriptor: (IIII[CI)V
    flags: (0x0000) 
    Code:
      stack=5, locals=7, args_size=7
        start local 0 // java.nio.CharBuffer this
        start local 1 // int mark
        start local 2 // int pos
        start local 3 // int lim
        start local 4 // int cap
        start local 5 // char[] hb
        start local 6 // int offset
         0: .line 281
            aload 0 /* this */
            iload 1 /* mark */
            iload 2 /* pos */
            iload 3 /* lim */
            iload 4 /* cap */
            invokespecial java.nio.Buffer.<init>:(IIII)V
         1: .line 282
            aload 0 /* this */
            aload 5 /* hb */
            putfield java.nio.CharBuffer.hb:[C
         2: .line 283
            aload 0 /* this */
            iload 6 /* offset */
            putfield java.nio.CharBuffer.offset:I
         3: .line 284
            return
        end local 6 // int offset
        end local 5 // char[] hb
        end local 4 // int cap
        end local 3 // int lim
        end local 2 // int pos
        end local 1 // int mark
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Ljava/nio/CharBuffer;
            0    4     1    mark  I
            0    4     2     pos  I
            0    4     3     lim  I
            0    4     4     cap  I
            0    4     5      hb  [C
            0    4     6  offset  I
    MethodParameters:
        Name  Flags
      mark    
      pos     
      lim     
      cap     
      hb      
      offset  

  void <init>(int, int, int, int);
    descriptor: (IIII)V
    flags: (0x0000) 
    Code:
      stack=7, locals=5, args_size=5
        start local 0 // java.nio.CharBuffer this
        start local 1 // int mark
        start local 2 // int pos
        start local 3 // int lim
        start local 4 // int cap
         0: .line 289
            aload 0 /* this */
            iload 1 /* mark */
            iload 2 /* pos */
            iload 3 /* lim */
            iload 4 /* cap */
            aconst_null
            iconst_0
            invokespecial java.nio.CharBuffer.<init>:(IIII[CI)V
         1: .line 290
            return
        end local 4 // int cap
        end local 3 // int lim
        end local 2 // int pos
        end local 1 // int mark
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/nio/CharBuffer;
            0    2     1  mark  I
            0    2     2   pos  I
            0    2     3   lim  I
            0    2     4   cap  I
    MethodParameters:
      Name  Flags
      mark  
      pos   
      lim   
      cap   

  public static java.nio.CharBuffer allocate(int);
    descriptor: (I)Ljava/nio/CharBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // int capacity
         0: .line 333
            iload 0 /* capacity */
            ifge 2
         1: .line 334
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 335
      StackMap locals:
      StackMap stack:
            new java.nio.HeapCharBuffer
            dup
            iload 0 /* capacity */
            iload 0 /* capacity */
            invokespecial java.nio.HeapCharBuffer.<init>:(II)V
            areturn
        end local 0 // int capacity
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  public static java.nio.CharBuffer wrap(char[], int, int);
    descriptor: ([CII)Ljava/nio/CharBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // char[] array
        start local 1 // int offset
        start local 2 // int length
         0: .line 373
            new java.nio.HeapCharBuffer
            dup
            aload 0 /* array */
            iload 1 /* offset */
            iload 2 /* length */
            invokespecial java.nio.HeapCharBuffer.<init>:([CII)V
         1: areturn
         2: .line 374
      StackMap locals:
      StackMap stack: java.lang.IllegalArgumentException
            pop
         3: .line 375
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
        end local 2 // int length
        end local 1 // int offset
        end local 0 // char[] array
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0   array  [C
            0    4     1  offset  I
            0    4     2  length  I
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.IllegalArgumentException
    MethodParameters:
        Name  Flags
      array   
      offset  
      length  

  public static java.nio.CharBuffer wrap(char[]);
    descriptor: ([C)Ljava/nio/CharBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // char[] array
         0: .line 396
            aload 0 /* array */
            iconst_0
            aload 0 /* array */
            arraylength
            invokestatic java.nio.CharBuffer.wrap:([CII)Ljava/nio/CharBuffer;
            areturn
        end local 0 // char[] array
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  array  [C
    MethodParameters:
       Name  Flags
      array  

  public int read(java.nio.CharBuffer);
    descriptor: (Ljava/nio/CharBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // java.nio.CharBuffer this
        start local 1 // java.nio.CharBuffer target
         0: .line 417
            aload 1 /* target */
            invokevirtual java.nio.CharBuffer.remaining:()I
            istore 2 /* targetRemaining */
        start local 2 // int targetRemaining
         1: .line 418
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.remaining:()I
            istore 3 /* remaining */
        start local 3 // int remaining
         2: .line 419
            iload 3 /* remaining */
            ifne 4
         3: .line 420
            iconst_m1
            ireturn
         4: .line 421
      StackMap locals: int int
      StackMap stack:
            iload 3 /* remaining */
            iload 2 /* targetRemaining */
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* n */
        start local 4 // int n
         5: .line 422
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.limit:()I
            istore 5 /* limit */
        start local 5 // int limit
         6: .line 424
            iload 2 /* targetRemaining */
            iload 3 /* remaining */
            if_icmpge 8
         7: .line 425
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.position:()I
            iload 4 /* n */
            iadd
            invokevirtual java.nio.CharBuffer.limit:(I)Ljava/nio/Buffer;
            pop
         8: .line 427
      StackMap locals: int int
      StackMap stack:
            iload 4 /* n */
            ifle 14
         9: .line 428
            aload 1 /* target */
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.put:(Ljava/nio/CharBuffer;)Ljava/nio/CharBuffer;
            pop
        10: .line 429
            goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: astore 6
        12: .line 430
            aload 0 /* this */
            iload 5 /* limit */
            invokevirtual java.nio.CharBuffer.limit:(I)Ljava/nio/Buffer;
            pop
        13: .line 431
            aload 6
            athrow
        14: .line 430
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* limit */
            invokevirtual java.nio.CharBuffer.limit:(I)Ljava/nio/Buffer;
            pop
        15: .line 432
            iload 4 /* n */
            ireturn
        end local 5 // int limit
        end local 4 // int n
        end local 3 // int remaining
        end local 2 // int targetRemaining
        end local 1 // java.nio.CharBuffer target
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   16     0             this  Ljava/nio/CharBuffer;
            0   16     1           target  Ljava/nio/CharBuffer;
            1   16     2  targetRemaining  I
            2   16     3        remaining  I
            5   16     4                n  I
            6   16     5            limit  I
      Exception table:
        from    to  target  type
           8    11      11  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      target  

  public static java.nio.CharBuffer wrap(java.lang.CharSequence, int, int);
    descriptor: (Ljava/lang/CharSequence;II)Ljava/nio/CharBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // java.lang.CharSequence csq
        start local 1 // int start
        start local 2 // int end
         0: .line 466
            new java.nio.StringCharBuffer
            dup
            aload 0 /* csq */
            iload 1 /* start */
            iload 2 /* end */
            invokespecial java.nio.StringCharBuffer.<init>:(Ljava/lang/CharSequence;II)V
         1: areturn
         2: .line 467
      StackMap locals:
      StackMap stack: java.lang.IllegalArgumentException
            pop
         3: .line 468
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
        end local 2 // int end
        end local 1 // int start
        end local 0 // java.lang.CharSequence csq
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0    csq  Ljava/lang/CharSequence;
            0    4     1  start  I
            0    4     2    end  I
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.IllegalArgumentException
    MethodParameters:
       Name  Flags
      csq    
      start  
      end    

  public static java.nio.CharBuffer wrap(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Ljava/nio/CharBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.CharSequence csq
         0: .line 487
            aload 0 /* csq */
            iconst_0
            aload 0 /* csq */
            invokeinterface java.lang.CharSequence.length:()I
            invokestatic java.nio.CharBuffer.wrap:(Ljava/lang/CharSequence;II)Ljava/nio/CharBuffer;
            areturn
        end local 0 // java.lang.CharSequence csq
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   csq  Ljava/lang/CharSequence;
    MethodParameters:
      Name  Flags
      csq   

  public abstract java.nio.CharBuffer slice();
    descriptor: ()Ljava/nio/CharBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.nio.CharBuffer duplicate();
    descriptor: ()Ljava/nio/CharBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.nio.CharBuffer asReadOnlyBuffer();
    descriptor: ()Ljava/nio/CharBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract char get();
    descriptor: ()C
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.nio.CharBuffer put(char);
    descriptor: (C)Ljava/nio/CharBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      c     

  public abstract char get(int);
    descriptor: (I)C
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  

  abstract char getUnchecked(int);
    descriptor: (I)C
    flags: (0x0400) ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  

  public abstract java.nio.CharBuffer put(int, char);
    descriptor: (IC)Ljava/nio/CharBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  
      c      

  public java.nio.CharBuffer get(char[], int, int);
    descriptor: ([CII)Ljava/nio/CharBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // java.nio.CharBuffer this
        start local 1 // char[] dst
        start local 2 // int offset
        start local 3 // int length
         0: .line 686
            iload 2 /* offset */
            iload 3 /* length */
            aload 1 /* dst */
            arraylength
            invokestatic java.nio.CharBuffer.checkBounds:(III)V
         1: .line 687
            iload 3 /* length */
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.remaining:()I
            if_icmple 3
         2: .line 688
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         3: .line 689
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* length */
            iadd
            istore 4 /* end */
        start local 4 // int end
         4: .line 690
            iload 2 /* offset */
            istore 5 /* i */
        start local 5 // int i
         5: goto 8
         6: .line 691
      StackMap locals: int int
      StackMap stack:
            aload 1 /* dst */
            iload 5 /* i */
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.get:()C
            castore
         7: .line 690
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 5 /* i */
            iload 4 /* end */
            if_icmplt 6
        end local 5 // int i
         9: .line 692
            aload 0 /* this */
            areturn
        end local 4 // int end
        end local 3 // int length
        end local 2 // int offset
        end local 1 // char[] dst
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Ljava/nio/CharBuffer;
            0   10     1     dst  [C
            0   10     2  offset  I
            0   10     3  length  I
            4   10     4     end  I
            5    9     5       i  I
    MethodParameters:
        Name  Flags
      dst     
      offset  
      length  

  public java.nio.CharBuffer get(char[]);
    descriptor: ([C)Ljava/nio/CharBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.nio.CharBuffer this
        start local 1 // char[] dst
         0: .line 715
            aload 0 /* this */
            aload 1 /* dst */
            iconst_0
            aload 1 /* dst */
            arraylength
            invokevirtual java.nio.CharBuffer.get:([CII)Ljava/nio/CharBuffer;
            areturn
        end local 1 // char[] dst
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/CharBuffer;
            0    1     1   dst  [C
    MethodParameters:
      Name  Flags
      dst   

  public java.nio.CharBuffer put(java.nio.CharBuffer);
    descriptor: (Ljava/nio/CharBuffer;)Ljava/nio/CharBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // java.nio.CharBuffer this
        start local 1 // java.nio.CharBuffer src
         0: .line 763
            aload 1 /* src */
            aload 0 /* this */
            if_acmpne 2
         1: .line 764
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 765
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.isReadOnly:()Z
            ifeq 4
         3: .line 766
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
         4: .line 767
      StackMap locals:
      StackMap stack:
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.remaining:()I
            istore 2 /* n */
        start local 2 // int n
         5: .line 768
            iload 2 /* n */
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.remaining:()I
            if_icmple 7
         6: .line 769
            new java.nio.BufferOverflowException
            dup
            invokespecial java.nio.BufferOverflowException.<init>:()V
            athrow
         7: .line 770
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         8: goto 11
         9: .line 771
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* src */
            invokevirtual java.nio.CharBuffer.get:()C
            invokevirtual java.nio.CharBuffer.put:(C)Ljava/nio/CharBuffer;
            pop
        10: .line 770
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            iload 2 /* n */
            if_icmplt 9
        end local 3 // int i
        12: .line 772
            aload 0 /* this */
            areturn
        end local 2 // int n
        end local 1 // java.nio.CharBuffer src
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Ljava/nio/CharBuffer;
            0   13     1   src  Ljava/nio/CharBuffer;
            5   13     2     n  I
            8   12     3     i  I
    MethodParameters:
      Name  Flags
      src   

  public java.nio.CharBuffer put(char[], int, int);
    descriptor: ([CII)Ljava/nio/CharBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // java.nio.CharBuffer this
        start local 1 // char[] src
        start local 2 // int offset
        start local 3 // int length
         0: .line 827
            iload 2 /* offset */
            iload 3 /* length */
            aload 1 /* src */
            arraylength
            invokestatic java.nio.CharBuffer.checkBounds:(III)V
         1: .line 828
            iload 3 /* length */
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.remaining:()I
            if_icmple 3
         2: .line 829
            new java.nio.BufferOverflowException
            dup
            invokespecial java.nio.BufferOverflowException.<init>:()V
            athrow
         3: .line 830
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* length */
            iadd
            istore 4 /* end */
        start local 4 // int end
         4: .line 831
            iload 2 /* offset */
            istore 5 /* i */
        start local 5 // int i
         5: goto 8
         6: .line 832
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* src */
            iload 5 /* i */
            caload
            invokevirtual java.nio.CharBuffer.put:(C)Ljava/nio/CharBuffer;
            pop
         7: .line 831
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 5 /* i */
            iload 4 /* end */
            if_icmplt 6
        end local 5 // int i
         9: .line 833
            aload 0 /* this */
            areturn
        end local 4 // int end
        end local 3 // int length
        end local 2 // int offset
        end local 1 // char[] src
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Ljava/nio/CharBuffer;
            0   10     1     src  [C
            0   10     2  offset  I
            0   10     3  length  I
            4   10     4     end  I
            5    9     5       i  I
    MethodParameters:
        Name  Flags
      src     
      offset  
      length  

  public final java.nio.CharBuffer put(char[]);
    descriptor: ([C)Ljava/nio/CharBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.nio.CharBuffer this
        start local 1 // char[] src
         0: .line 859
            aload 0 /* this */
            aload 1 /* src */
            iconst_0
            aload 1 /* src */
            arraylength
            invokevirtual java.nio.CharBuffer.put:([CII)Ljava/nio/CharBuffer;
            areturn
        end local 1 // char[] src
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/CharBuffer;
            0    1     1   src  [C
    MethodParameters:
      Name  Flags
      src   

  public java.nio.CharBuffer put(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)Ljava/nio/CharBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // java.nio.CharBuffer this
        start local 1 // java.lang.String src
        start local 2 // int start
        start local 3 // int end
         0: .line 918
            iload 2 /* start */
            iload 3 /* end */
            iload 2 /* start */
            isub
            aload 1 /* src */
            invokevirtual java.lang.String.length:()I
            invokestatic java.nio.CharBuffer.checkBounds:(III)V
         1: .line 919
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.isReadOnly:()Z
            ifeq 3
         2: .line 920
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
         3: .line 921
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            iload 2 /* start */
            isub
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.remaining:()I
            if_icmple 5
         4: .line 922
            new java.nio.BufferOverflowException
            dup
            invokespecial java.nio.BufferOverflowException.<init>:()V
            athrow
         5: .line 923
      StackMap locals:
      StackMap stack:
            iload 2 /* start */
            istore 4 /* i */
        start local 4 // int i
         6: goto 9
         7: .line 924
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* src */
            iload 4 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            invokevirtual java.nio.CharBuffer.put:(C)Ljava/nio/CharBuffer;
            pop
         8: .line 923
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 4 /* i */
            iload 3 /* end */
            if_icmplt 7
        end local 4 // int i
        10: .line 925
            aload 0 /* this */
            areturn
        end local 3 // int end
        end local 2 // int start
        end local 1 // java.lang.String src
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Ljava/nio/CharBuffer;
            0   11     1    src  Ljava/lang/String;
            0   11     2  start  I
            0   11     3    end  I
            6   10     4      i  I
    MethodParameters:
       Name  Flags
      src    
      start  
      end    

  public final java.nio.CharBuffer put(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/nio/CharBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.nio.CharBuffer this
        start local 1 // java.lang.String src
         0: .line 950
            aload 0 /* this */
            aload 1 /* src */
            iconst_0
            aload 1 /* src */
            invokevirtual java.lang.String.length:()I
            invokevirtual java.nio.CharBuffer.put:(Ljava/lang/String;II)Ljava/nio/CharBuffer;
            areturn
        end local 1 // java.lang.String src
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/CharBuffer;
            0    1     1   src  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      src   

  public final boolean hasArray();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.CharBuffer this
         0: .line 970
            aload 0 /* this */
            getfield java.nio.CharBuffer.hb:[C
            ifnull 1
            aload 0 /* this */
            getfield java.nio.CharBuffer.isReadOnly:Z
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/nio/CharBuffer;

  public final char[] array();
    descriptor: ()[C
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.CharBuffer this
         0: .line 993
            aload 0 /* this */
            getfield java.nio.CharBuffer.hb:[C
            ifnonnull 2
         1: .line 994
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
         2: .line 995
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.nio.CharBuffer.isReadOnly:Z
            ifeq 4
         3: .line 996
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
         4: .line 997
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.nio.CharBuffer.hb:[C
            areturn
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/nio/CharBuffer;

  public final int arrayOffset();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.CharBuffer this
         0: .line 1021
            aload 0 /* this */
            getfield java.nio.CharBuffer.hb:[C
            ifnonnull 2
         1: .line 1022
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
         2: .line 1023
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.nio.CharBuffer.isReadOnly:Z
            ifeq 4
         3: .line 1024
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
         4: .line 1025
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.nio.CharBuffer.offset:I
            ireturn
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/nio/CharBuffer;

  public abstract java.nio.CharBuffer compact();
    descriptor: ()Ljava/nio/CharBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean isDirect();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // java.nio.CharBuffer this
         0: .line 1116
            iconst_1
            istore 1 /* h */
        start local 1 // int h
         1: .line 1117
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.position:()I
            istore 2 /* p */
        start local 2 // int p
         2: .line 1118
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.limit:()I
            iconst_1
            isub
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 1122
      StackMap locals: int int int
      StackMap stack:
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual java.nio.CharBuffer.get:(I)C
            iadd
            istore 1 /* h */
         5: .line 1118
            iinc 3 /* i */ -1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            iload 2 /* p */
            if_icmpge 4
        end local 3 // int i
         7: .line 1124
            iload 1 /* h */
            ireturn
        end local 2 // int p
        end local 1 // int h
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/nio/CharBuffer;
            1    8     1     h  I
            2    8     2     p  I
            3    7     3     i  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // java.nio.CharBuffer this
        start local 1 // java.lang.Object ob
         0: .line 1160
            aload 0 /* this */
            aload 1 /* ob */
            if_acmpne 2
         1: .line 1161
            iconst_1
            ireturn
         2: .line 1162
      StackMap locals:
      StackMap stack:
            aload 1 /* ob */
            instanceof java.nio.CharBuffer
            ifne 4
         3: .line 1163
            iconst_0
            ireturn
         4: .line 1164
      StackMap locals:
      StackMap stack:
            aload 1 /* ob */
            checkcast java.nio.CharBuffer
            astore 2 /* that */
        start local 2 // java.nio.CharBuffer that
         5: .line 1165
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.remaining:()I
            aload 2 /* that */
            invokevirtual java.nio.CharBuffer.remaining:()I
            if_icmpeq 7
         6: .line 1166
            iconst_0
            ireturn
         7: .line 1167
      StackMap locals: java.nio.CharBuffer
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.position:()I
            istore 3 /* p */
        start local 3 // int p
         8: .line 1168
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.limit:()I
            iconst_1
            isub
            istore 4 /* i */
        start local 4 // int i
         9: aload 2 /* that */
            invokevirtual java.nio.CharBuffer.limit:()I
            iconst_1
            isub
            istore 5 /* j */
        start local 5 // int j
        10: goto 14
        11: .line 1169
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual java.nio.CharBuffer.get:(I)C
            aload 2 /* that */
            iload 5 /* j */
            invokevirtual java.nio.CharBuffer.get:(I)C
            invokestatic java.nio.CharBuffer.equals:(CC)Z
            ifne 13
        12: .line 1170
            iconst_0
            ireturn
        13: .line 1168
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ -1
            iinc 5 /* j */ -1
      StackMap locals:
      StackMap stack:
        14: iload 4 /* i */
            iload 3 /* p */
            if_icmpge 11
        end local 5 // int j
        end local 4 // int i
        15: .line 1171
            iconst_1
            ireturn
        end local 3 // int p
        end local 2 // java.nio.CharBuffer that
        end local 1 // java.lang.Object ob
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Ljava/nio/CharBuffer;
            0   16     1    ob  Ljava/lang/Object;
            5   16     2  that  Ljava/nio/CharBuffer;
            8   16     3     p  I
            9   15     4     i  I
           10   15     5     j  I
    MethodParameters:
      Name  Flags
      ob    

  private static boolean equals(char, char);
    descriptor: (CC)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // char x
        start local 1 // char y
         0: .line 1178
            iload 0 /* x */
            iload 1 /* y */
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // char y
        end local 0 // char x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     x  C
            0    2     1     y  C
    MethodParameters:
      Name  Flags
      x     
      y     

  public int compareTo(java.nio.CharBuffer);
    descriptor: (Ljava/nio/CharBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // java.nio.CharBuffer this
        start local 1 // java.nio.CharBuffer that
         0: .line 1206
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.position:()I
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.remaining:()I
            aload 1 /* that */
            invokevirtual java.nio.CharBuffer.remaining:()I
            invokestatic java.lang.Math.min:(II)I
            iadd
            istore 2 /* n */
        start local 2 // int n
         1: .line 1207
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.position:()I
            istore 3 /* i */
        start local 3 // int i
         2: aload 1 /* that */
            invokevirtual java.nio.CharBuffer.position:()I
            istore 4 /* j */
        start local 4 // int j
         3: goto 8
         4: .line 1208
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual java.nio.CharBuffer.get:(I)C
            aload 1 /* that */
            iload 4 /* j */
            invokevirtual java.nio.CharBuffer.get:(I)C
            invokestatic java.nio.CharBuffer.compare:(CC)I
            istore 5 /* cmp */
        start local 5 // int cmp
         5: .line 1209
            iload 5 /* cmp */
            ifeq 7
         6: .line 1210
            iload 5 /* cmp */
            ireturn
        end local 5 // int cmp
         7: .line 1207
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
            iinc 4 /* j */ 1
      StackMap locals:
      StackMap stack:
         8: iload 3 /* i */
            iload 2 /* n */
            if_icmplt 4
        end local 4 // int j
        end local 3 // int i
         9: .line 1212
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.remaining:()I
            aload 1 /* that */
            invokevirtual java.nio.CharBuffer.remaining:()I
            isub
            ireturn
        end local 2 // int n
        end local 1 // java.nio.CharBuffer that
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Ljava/nio/CharBuffer;
            0   10     1  that  Ljava/nio/CharBuffer;
            1   10     2     n  I
            2    9     3     i  I
            3    9     4     j  I
            5    7     5   cmp  I
    MethodParameters:
      Name  Flags
      that  

  private static int compare(char, char);
    descriptor: (CC)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // char x
        start local 1 // char y
         0: .line 1222
            iload 0 /* x */
            iload 1 /* y */
            invokestatic java.lang.Character.compare:(CC)I
            ireturn
        end local 1 // char y
        end local 0 // char x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     x  C
            0    1     1     y  C
    MethodParameters:
      Name  Flags
      x     
      y     

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.nio.CharBuffer this
         0: .line 1241
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.position:()I
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.limit:()I
            invokevirtual java.nio.CharBuffer.toString:(II)Ljava/lang/String;
            areturn
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/CharBuffer;

  abstract java.lang.String toString(int, int);
    descriptor: (II)Ljava/lang/String;
    flags: (0x0400) ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      start  
      end    

  public final int length();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.CharBuffer this
         0: .line 1260
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.remaining:()I
            ireturn
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/CharBuffer;

  public final char charAt(int);
    descriptor: (I)C
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // java.nio.CharBuffer this
        start local 1 // int index
         0: .line 1278
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.nio.CharBuffer.position:()I
            aload 0 /* this */
            iload 1 /* index */
            iconst_1
            invokevirtual java.nio.CharBuffer.checkIndex:(II)I
            iadd
            invokevirtual java.nio.CharBuffer.get:(I)C
            ireturn
        end local 1 // int index
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljava/nio/CharBuffer;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public abstract java.nio.CharBuffer subSequence(int, int);
    descriptor: (II)Ljava/nio/CharBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      start  
      end    

  public java.nio.CharBuffer append(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Ljava/nio/CharBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.nio.CharBuffer this
        start local 1 // java.lang.CharSequence csq
         0: .line 1348
            aload 1 /* csq */
            ifnonnull 2
         1: .line 1349
            aload 0 /* this */
            ldc "null"
            invokevirtual java.nio.CharBuffer.put:(Ljava/lang/String;)Ljava/nio/CharBuffer;
            areturn
         2: .line 1351
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* csq */
            invokeinterface java.lang.CharSequence.toString:()Ljava/lang/String;
            invokevirtual java.nio.CharBuffer.put:(Ljava/lang/String;)Ljava/nio/CharBuffer;
            areturn
        end local 1 // java.lang.CharSequence csq
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/nio/CharBuffer;
            0    3     1   csq  Ljava/lang/CharSequence;
    MethodParameters:
      Name  Flags
      csq   

  public java.nio.CharBuffer append(java.lang.CharSequence, int, int);
    descriptor: (Ljava/lang/CharSequence;II)Ljava/nio/CharBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // java.nio.CharBuffer this
        start local 1 // java.lang.CharSequence csq
        start local 2 // int start
        start local 3 // int end
         0: .line 1387
            aload 1 /* csq */
            ifnonnull 1
            ldc "null"
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 1 /* csq */
      StackMap locals:
      StackMap stack: java.lang.CharSequence
         2: astore 4 /* cs */
        start local 4 // java.lang.CharSequence cs
         3: .line 1388
            aload 0 /* this */
            aload 4 /* cs */
            iload 2 /* start */
            iload 3 /* end */
            invokeinterface java.lang.CharSequence.subSequence:(II)Ljava/lang/CharSequence;
            invokeinterface java.lang.CharSequence.toString:()Ljava/lang/String;
            invokevirtual java.nio.CharBuffer.put:(Ljava/lang/String;)Ljava/nio/CharBuffer;
            areturn
        end local 4 // java.lang.CharSequence cs
        end local 3 // int end
        end local 2 // int start
        end local 1 // java.lang.CharSequence csq
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Ljava/nio/CharBuffer;
            0    4     1    csq  Ljava/lang/CharSequence;
            0    4     2  start  I
            0    4     3    end  I
            3    4     4     cs  Ljava/lang/CharSequence;
    MethodParameters:
       Name  Flags
      csq    
      start  
      end    

  public java.nio.CharBuffer append(char);
    descriptor: (C)Ljava/nio/CharBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.nio.CharBuffer this
        start local 1 // char c
         0: .line 1415
            aload 0 /* this */
            iload 1 /* c */
            invokevirtual java.nio.CharBuffer.put:(C)Ljava/nio/CharBuffer;
            areturn
        end local 1 // char c
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/CharBuffer;
            0    1     1     c  C
    MethodParameters:
      Name  Flags
      c     

  public abstract java.nio.ByteOrder order();
    descriptor: ()Ljava/nio/ByteOrder;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public java.util.stream.IntStream chars();
    descriptor: ()Ljava/util/stream/IntStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.nio.CharBuffer this
         0: .line 1497
            aload 0 /* this */
            invokedynamic get(Ljava/nio/CharBuffer;)Ljava/util/function/Supplier;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()Ljava/lang/Object;
                  java/nio/CharBuffer.lambda$0()Ljava/util/Spliterator$OfInt; (7)
                  ()Ljava/util/Spliterator$OfInt;
         1: .line 1498
            sipush 16464
            iconst_0
         2: .line 1497
            invokestatic java.util.stream.StreamSupport.intStream:(Ljava/util/function/Supplier;IZ)Ljava/util/stream/IntStream;
            areturn
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/nio/CharBuffer;

  public java.lang.CharSequence subSequence(int, int);
    descriptor: (II)Ljava/lang/CharSequence;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            iload 2
            invokevirtual java.nio.CharBuffer.subSequence:(II)Ljava/nio/CharBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public int compareTo(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.nio.CharBuffer
            invokevirtual java.nio.CharBuffer.compareTo:(Ljava/nio/CharBuffer;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object array();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.nio.CharBuffer.array:()[C
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Appendable append(char);
    descriptor: (C)Ljava/lang/Appendable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual java.nio.CharBuffer.append:(C)Ljava/nio/CharBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException

  public java.lang.Appendable append(java.lang.CharSequence, int, int);
    descriptor: (Ljava/lang/CharSequence;II)Ljava/lang/Appendable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            iload 2
            iload 3
            invokevirtual java.nio.CharBuffer.append:(Ljava/lang/CharSequence;II)Ljava/nio/CharBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException

  public java.lang.Appendable append(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Ljava/lang/Appendable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual java.nio.CharBuffer.append:(Ljava/lang/CharSequence;)Ljava/nio/CharBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException

  private java.util.Spliterator$OfInt lambda$0();
    descriptor: ()Ljava/util/Spliterator$OfInt;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.nio.CharBuffer this
         0: .line 1497
            new java.nio.CharBufferSpliterator
            dup
            aload 0 /* this */
            invokespecial java.nio.CharBufferSpliterator.<init>:(Ljava/nio/CharBuffer;)V
            areturn
        end local 0 // java.nio.CharBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/CharBuffer;
}
Signature: Ljava/nio/Buffer;Ljava/lang/Comparable<Ljava/nio/CharBuffer;>;Ljava/lang/Appendable;Ljava/lang/CharSequence;Ljava/lang/Readable;
SourceFile: "CharBuffer.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract OfInt = java.util.Spliterator$OfInt of java.util.Spliterator