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

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

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

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

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

  void <init>(int, int, int, int, byte[], int);
    descriptor: (IIII[BI)V
    flags: (0x0000) 
    Code:
      stack=5, locals=7, args_size=7
        start local 0 // java.nio.ByteBuffer this
        start local 1 // int mark
        start local 2 // int pos
        start local 3 // int lim
        start local 4 // int cap
        start local 5 // byte[] hb
        start local 6 // int offset
         0: .line 276
            aload 0 /* this */
            iload 1 /* mark */
            iload 2 /* pos */
            iload 3 /* lim */
            iload 4 /* cap */
            invokespecial java.nio.Buffer.<init>:(IIII)V
         1: .line 1378
            aload 0 /* this */
         2: .line 1379
            iconst_1
            putfield java.nio.ByteBuffer.bigEndian:Z
         3: .line 1380
            aload 0 /* this */
         4: .line 1381
            invokestatic java.nio.Bits.byteOrder:()Ljava/nio/ByteOrder;
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            if_acmpne 5
            iconst_1
            goto 6
      StackMap locals: java.nio.ByteBuffer int int int int byte[] int
      StackMap stack: java.nio.ByteBuffer
         5: iconst_0
      StackMap locals: java.nio.ByteBuffer int int int int byte[] int
      StackMap stack: java.nio.ByteBuffer int
         6: putfield java.nio.ByteBuffer.nativeByteOrder:Z
         7: .line 277
            aload 0 /* this */
            aload 5 /* hb */
            putfield java.nio.ByteBuffer.hb:[B
         8: .line 278
            aload 0 /* this */
            iload 6 /* offset */
            putfield java.nio.ByteBuffer.offset:I
         9: .line 279
            return
        end local 6 // int offset
        end local 5 // byte[] 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.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Ljava/nio/ByteBuffer;
            0   10     1    mark  I
            0   10     2     pos  I
            0   10     3     lim  I
            0   10     4     cap  I
            0   10     5      hb  [B
            0   10     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.ByteBuffer this
        start local 1 // int mark
        start local 2 // int pos
        start local 3 // int lim
        start local 4 // int cap
         0: .line 284
            aload 0 /* this */
            iload 1 /* mark */
            iload 2 /* pos */
            iload 3 /* lim */
            iload 4 /* cap */
            aconst_null
            iconst_0
            invokespecial java.nio.ByteBuffer.<init>:(IIII[BI)V
         1: .line 285
            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.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/nio/ByteBuffer;
            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.ByteBuffer allocateDirect(int);
    descriptor: (I)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int capacity
         0: .line 305
            new java.nio.DirectByteBuffer
            dup
            iload 0 /* capacity */
            invokespecial java.nio.DirectByteBuffer.<init>:(I)V
            areturn
        end local 0 // int capacity
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  public static java.nio.ByteBuffer allocate(int);
    descriptor: (I)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // int capacity
         0: .line 327
            iload 0 /* capacity */
            ifge 2
         1: .line 328
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 329
      StackMap locals:
      StackMap stack:
            new java.nio.HeapByteBuffer
            dup
            iload 0 /* capacity */
            iload 0 /* capacity */
            invokespecial java.nio.HeapByteBuffer.<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.ByteBuffer wrap(byte[], int, int);
    descriptor: ([BII)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // byte[] array
        start local 1 // int offset
        start local 2 // int length
         0: .line 367
            new java.nio.HeapByteBuffer
            dup
            aload 0 /* array */
            iload 1 /* offset */
            iload 2 /* length */
            invokespecial java.nio.HeapByteBuffer.<init>:([BII)V
         1: areturn
         2: .line 368
      StackMap locals:
      StackMap stack: java.lang.IllegalArgumentException
            pop
         3: .line 369
            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 // byte[] array
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0   array  [B
            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.ByteBuffer wrap(byte[]);
    descriptor: ([B)Ljava/nio/ByteBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // byte[] array
         0: .line 390
            aload 0 /* array */
            iconst_0
            aload 0 /* array */
            arraylength
            invokestatic java.nio.ByteBuffer.wrap:([BII)Ljava/nio/ByteBuffer;
            areturn
        end local 0 // byte[] array
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  array  [B
    MethodParameters:
       Name  Flags
      array  

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

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

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

  public abstract byte get();
    descriptor: ()B
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.nio.ByteBuffer put(byte);
    descriptor: (B)Ljava/nio/ByteBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      b     

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

  public abstract java.nio.ByteBuffer put(int, byte);
    descriptor: (IB)Ljava/nio/ByteBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  
      b      

  public java.nio.ByteBuffer get(byte[], int, int);
    descriptor: ([BII)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // java.nio.ByteBuffer this
        start local 1 // byte[] dst
        start local 2 // int offset
        start local 3 // int length
         0: .line 666
            iload 2 /* offset */
            iload 3 /* length */
            aload 1 /* dst */
            arraylength
            invokestatic java.nio.ByteBuffer.checkBounds:(III)V
         1: .line 667
            iload 3 /* length */
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            if_icmple 3
         2: .line 668
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         3: .line 669
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* length */
            iadd
            istore 4 /* end */
        start local 4 // int end
         4: .line 670
            iload 2 /* offset */
            istore 5 /* i */
        start local 5 // int i
         5: goto 8
         6: .line 671
      StackMap locals: int int
      StackMap stack:
            aload 1 /* dst */
            iload 5 /* i */
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.get:()B
            bastore
         7: .line 670
            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 672
            aload 0 /* this */
            areturn
        end local 4 // int end
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] dst
        end local 0 // java.nio.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Ljava/nio/ByteBuffer;
            0   10     1     dst  [B
            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.ByteBuffer get(byte[]);
    descriptor: ([B)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer this
        start local 1 // byte[] dst
         0: .line 692
            aload 0 /* this */
            aload 1 /* dst */
            iconst_0
            aload 1 /* dst */
            arraylength
            invokevirtual java.nio.ByteBuffer.get:([BII)Ljava/nio/ByteBuffer;
            areturn
        end local 1 // byte[] dst
        end local 0 // java.nio.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/ByteBuffer;
            0    1     1   dst  [B
    MethodParameters:
      Name  Flags
      dst   

  public java.nio.ByteBuffer put(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // java.nio.ByteBuffer this
        start local 1 // java.nio.ByteBuffer src
         0: .line 740
            aload 1 /* src */
            aload 0 /* this */
            if_acmpne 2
         1: .line 741
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 742
      StackMap locals:
      StackMap stack:
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 2 /* n */
        start local 2 // int n
         3: .line 743
            iload 2 /* n */
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            if_icmple 5
         4: .line 744
            new java.nio.BufferOverflowException
            dup
            invokespecial java.nio.BufferOverflowException.<init>:()V
            athrow
         5: .line 745
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 9
         7: .line 746
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.get:()B
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         8: .line 745
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            iload 2 /* n */
            if_icmplt 7
        end local 3 // int i
        10: .line 747
            aload 0 /* this */
            areturn
        end local 2 // int n
        end local 1 // java.nio.ByteBuffer src
        end local 0 // java.nio.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Ljava/nio/ByteBuffer;
            0   11     1   src  Ljava/nio/ByteBuffer;
            3   11     2     n  I
            6   10     3     i  I
    MethodParameters:
      Name  Flags
      src   

  public java.nio.ByteBuffer put(byte[], int, int);
    descriptor: ([BII)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // java.nio.ByteBuffer this
        start local 1 // byte[] src
        start local 2 // int offset
        start local 3 // int length
         0: .line 801
            iload 2 /* offset */
            iload 3 /* length */
            aload 1 /* src */
            arraylength
            invokestatic java.nio.ByteBuffer.checkBounds:(III)V
         1: .line 802
            iload 3 /* length */
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            if_icmple 3
         2: .line 803
            new java.nio.BufferOverflowException
            dup
            invokespecial java.nio.BufferOverflowException.<init>:()V
            athrow
         3: .line 804
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* length */
            iadd
            istore 4 /* end */
        start local 4 // int end
         4: .line 805
            iload 2 /* offset */
            istore 5 /* i */
        start local 5 // int i
         5: goto 8
         6: .line 806
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* src */
            iload 5 /* i */
            baload
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         7: .line 805
            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 807
            aload 0 /* this */
            areturn
        end local 4 // int end
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] src
        end local 0 // java.nio.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Ljava/nio/ByteBuffer;
            0   10     1     src  [B
            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.ByteBuffer put(byte[]);
    descriptor: ([B)Ljava/nio/ByteBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer this
        start local 1 // byte[] src
         0: .line 830
            aload 0 /* this */
            aload 1 /* src */
            iconst_0
            aload 1 /* src */
            arraylength
            invokevirtual java.nio.ByteBuffer.put:([BII)Ljava/nio/ByteBuffer;
            areturn
        end local 1 // byte[] src
        end local 0 // java.nio.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/ByteBuffer;
            0    1     1   src  [B
    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.ByteBuffer this
         0: .line 933
            aload 0 /* this */
            getfield java.nio.ByteBuffer.hb:[B
            ifnull 1
            aload 0 /* this */
            getfield java.nio.ByteBuffer.isReadOnly:Z
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // java.nio.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/nio/ByteBuffer;

  public final byte[] array();
    descriptor: ()[B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer this
         0: .line 956
            aload 0 /* this */
            getfield java.nio.ByteBuffer.hb:[B
            ifnonnull 2
         1: .line 957
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
         2: .line 958
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.nio.ByteBuffer.isReadOnly:Z
            ifeq 4
         3: .line 959
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
         4: .line 960
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.nio.ByteBuffer.hb:[B
            areturn
        end local 0 // java.nio.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/nio/ByteBuffer;

  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.ByteBuffer this
         0: .line 984
            aload 0 /* this */
            getfield java.nio.ByteBuffer.hb:[B
            ifnonnull 2
         1: .line 985
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
         2: .line 986
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.nio.ByteBuffer.isReadOnly:Z
            ifeq 4
         3: .line 987
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
         4: .line 988
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.nio.ByteBuffer.offset:I
            ireturn
        end local 0 // java.nio.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/nio/ByteBuffer;

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

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

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.nio.ByteBuffer this
         0: .line 1047
            new java.lang.StringBuffer
            dup
            invokespecial java.lang.StringBuffer.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuffer sb
         1: .line 1048
            aload 1 /* sb */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         2: .line 1049
            aload 1 /* sb */
            ldc "[pos="
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         3: .line 1050
            aload 1 /* sb */
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.position:()I
            invokevirtual java.lang.StringBuffer.append:(I)Ljava/lang/StringBuffer;
            pop
         4: .line 1051
            aload 1 /* sb */
            ldc " lim="
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         5: .line 1052
            aload 1 /* sb */
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.limit:()I
            invokevirtual java.lang.StringBuffer.append:(I)Ljava/lang/StringBuffer;
            pop
         6: .line 1053
            aload 1 /* sb */
            ldc " cap="
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         7: .line 1054
            aload 1 /* sb */
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.capacity:()I
            invokevirtual java.lang.StringBuffer.append:(I)Ljava/lang/StringBuffer;
            pop
         8: .line 1055
            aload 1 /* sb */
            ldc "]"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         9: .line 1056
            aload 1 /* sb */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuffer sb
        end local 0 // java.nio.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Ljava/nio/ByteBuffer;
            1   10     1    sb  Ljava/lang/StringBuffer;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // java.nio.ByteBuffer this
         0: .line 1078
            iconst_1
            istore 1 /* h */
        start local 1 // int h
         1: .line 1079
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 2 /* p */
        start local 2 // int p
         2: .line 1080
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.limit:()I
            iconst_1
            isub
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 1081
      StackMap locals: int int int
      StackMap stack:
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            iadd
            istore 1 /* h */
         5: .line 1080
            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 1082
            iload 1 /* h */
            ireturn
        end local 2 // int p
        end local 1 // int h
        end local 0 // java.nio.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/nio/ByteBuffer;
            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=2, locals=8, args_size=2
        start local 0 // java.nio.ByteBuffer this
        start local 1 // java.lang.Object ob
         0: .line 1111
            aload 0 /* this */
            aload 1 /* ob */
            if_acmpne 2
         1: .line 1112
            iconst_1
            ireturn
         2: .line 1113
      StackMap locals:
      StackMap stack:
            aload 1 /* ob */
            instanceof java.nio.ByteBuffer
            ifne 4
         3: .line 1114
            iconst_0
            ireturn
         4: .line 1115
      StackMap locals:
      StackMap stack:
            aload 1 /* ob */
            checkcast java.nio.ByteBuffer
            astore 2 /* that */
        start local 2 // java.nio.ByteBuffer that
         5: .line 1116
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            aload 2 /* that */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            if_icmpeq 7
         6: .line 1117
            iconst_0
            ireturn
         7: .line 1118
      StackMap locals: java.nio.ByteBuffer
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 3 /* p */
        start local 3 // int p
         8: .line 1119
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.limit:()I
            iconst_1
            isub
            istore 4 /* i */
        start local 4 // int i
         9: aload 2 /* that */
            invokevirtual java.nio.ByteBuffer.limit:()I
            iconst_1
            isub
            istore 5 /* j */
        start local 5 // int j
        10: goto 18
        11: .line 1120
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 6 /* v1 */
        start local 6 // byte v1
        12: .line 1121
            aload 2 /* that */
            iload 5 /* j */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 7 /* v2 */
        start local 7 // byte v2
        13: .line 1122
            iload 6 /* v1 */
            iload 7 /* v2 */
            if_icmpeq 17
        14: .line 1123
            iload 6 /* v1 */
            iload 6 /* v1 */
            if_icmpeq 16
            iload 7 /* v2 */
            iload 7 /* v2 */
            if_icmpeq 16
        15: .line 1124
            goto 17
        16: .line 1125
      StackMap locals: int int
      StackMap stack:
            iconst_0
            ireturn
        end local 7 // byte v2
        end local 6 // byte v1
        17: .line 1119
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ -1
            iinc 5 /* j */ -1
      StackMap locals:
      StackMap stack:
        18: iload 4 /* i */
            iload 3 /* p */
            if_icmpge 11
        end local 5 // int j
        end local 4 // int i
        19: .line 1128
            iconst_1
            ireturn
        end local 3 // int p
        end local 2 // java.nio.ByteBuffer that
        end local 1 // java.lang.Object ob
        end local 0 // java.nio.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0  this  Ljava/nio/ByteBuffer;
            0   20     1    ob  Ljava/lang/Object;
            5   20     2  that  Ljava/nio/ByteBuffer;
            8   20     3     p  I
            9   19     4     i  I
           10   19     5     j  I
           12   17     6    v1  B
           13   17     7    v2  B
    MethodParameters:
      Name  Flags
      ob    

  public int compareTo(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // java.nio.ByteBuffer this
        start local 1 // java.nio.ByteBuffer that
         0: .line 1144
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.position:()I
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            aload 1 /* that */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokestatic java.lang.Math.min:(II)I
            iadd
            istore 2 /* n */
        start local 2 // int n
         1: .line 1145
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 3 /* i */
        start local 3 // int i
         2: aload 1 /* that */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 4 /* j */
        start local 4 // int j
         3: goto 14
         4: .line 1146
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 5 /* v1 */
        start local 5 // byte v1
         5: .line 1147
            aload 1 /* that */
            iload 4 /* j */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 6 /* v2 */
        start local 6 // byte v2
         6: .line 1148
            iload 5 /* v1 */
            iload 6 /* v2 */
            if_icmpne 8
         7: .line 1149
            goto 13
         8: .line 1150
      StackMap locals: int int
      StackMap stack:
            iload 5 /* v1 */
            iload 5 /* v1 */
            if_icmpeq 10
            iload 6 /* v2 */
            iload 6 /* v2 */
            if_icmpeq 10
         9: .line 1151
            goto 13
        10: .line 1152
      StackMap locals:
      StackMap stack:
            iload 5 /* v1 */
            iload 6 /* v2 */
            if_icmpge 12
        11: .line 1153
            iconst_m1
            ireturn
        12: .line 1154
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 6 // byte v2
        end local 5 // byte v1
        13: .line 1145
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
            iinc 4 /* j */ 1
      StackMap locals:
      StackMap stack:
        14: iload 3 /* i */
            iload 2 /* n */
            if_icmplt 4
        end local 4 // int j
        end local 3 // int i
        15: .line 1156
            aload 0 /* this */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            aload 1 /* that */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            isub
            ireturn
        end local 2 // int n
        end local 1 // java.nio.ByteBuffer that
        end local 0 // java.nio.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Ljava/nio/ByteBuffer;
            0   16     1  that  Ljava/nio/ByteBuffer;
            1   16     2     n  I
            2   15     3     i  I
            3   15     4     j  I
            5   13     5    v1  B
            6   13     6    v2  B
    MethodParameters:
      Name  Flags
      that  

  public final java.nio.ByteOrder order();
    descriptor: ()Ljava/nio/ByteOrder;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer this
         0: .line 1394
            aload 0 /* this */
            getfield java.nio.ByteBuffer.bigEndian:Z
            ifeq 1
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            goto 2
      StackMap locals:
      StackMap stack:
         1: getstatic java.nio.ByteOrder.LITTLE_ENDIAN:Ljava/nio/ByteOrder;
      StackMap locals:
      StackMap stack: java.nio.ByteOrder
         2: areturn
        end local 0 // java.nio.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/nio/ByteBuffer;

  public final java.nio.ByteBuffer order(java.nio.ByteOrder);
    descriptor: (Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer this
        start local 1 // java.nio.ByteOrder bo
         0: .line 1408
            aload 0 /* this */
            aload 1 /* bo */
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            if_acmpne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: java.nio.ByteBuffer
         1: iconst_0
      StackMap locals: java.nio.ByteBuffer java.nio.ByteOrder
      StackMap stack: java.nio.ByteBuffer int
         2: putfield java.nio.ByteBuffer.bigEndian:Z
         3: .line 1409
            aload 0 /* this */
         4: .line 1410
            aload 0 /* this */
            getfield java.nio.ByteBuffer.bigEndian:Z
            invokestatic java.nio.Bits.byteOrder:()Ljava/nio/ByteOrder;
            getstatic java.nio.ByteOrder.BIG_ENDIAN:Ljava/nio/ByteOrder;
            if_acmpne 5
            iconst_1
            goto 6
      StackMap locals: java.nio.ByteBuffer java.nio.ByteOrder
      StackMap stack: java.nio.ByteBuffer int
         5: iconst_0
      StackMap locals: java.nio.ByteBuffer java.nio.ByteOrder
      StackMap stack: java.nio.ByteBuffer int int
         6: if_icmpne 7
            iconst_1
            goto 8
      StackMap locals:
      StackMap stack: java.nio.ByteBuffer
         7: iconst_0
         8: .line 1409
      StackMap locals: java.nio.ByteBuffer java.nio.ByteOrder
      StackMap stack: java.nio.ByteBuffer int
            putfield java.nio.ByteBuffer.nativeByteOrder:Z
         9: .line 1411
            aload 0 /* this */
            areturn
        end local 1 // java.nio.ByteOrder bo
        end local 0 // java.nio.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Ljava/nio/ByteBuffer;
            0   10     1    bo  Ljava/nio/ByteOrder;
    MethodParameters:
      Name  Flags
      bo    

  abstract byte _get(int);
    descriptor: (I)B
    flags: (0x0400) ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      i     

  abstract void _put(int, byte);
    descriptor: (IB)V
    flags: (0x0400) ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      i     
      b     

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

  public abstract java.nio.ByteBuffer putChar(char);
    descriptor: (C)Ljava/nio/ByteBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      value  

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

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

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

  public abstract short getShort();
    descriptor: ()S
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.nio.ByteBuffer putShort(short);
    descriptor: (S)Ljava/nio/ByteBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      value  

  public abstract short getShort(int);
    descriptor: (I)S
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  

  public abstract java.nio.ByteBuffer putShort(int, short);
    descriptor: (IS)Ljava/nio/ByteBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  
      value  

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

  public abstract int getInt();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.nio.ByteBuffer putInt(int);
    descriptor: (I)Ljava/nio/ByteBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      value  

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

  public abstract java.nio.ByteBuffer putInt(int, int);
    descriptor: (II)Ljava/nio/ByteBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  
      value  

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

  public abstract long getLong();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.nio.ByteBuffer putLong(long);
    descriptor: (J)Ljava/nio/ByteBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      value  

  public abstract long getLong(int);
    descriptor: (I)J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  

  public abstract java.nio.ByteBuffer putLong(int, long);
    descriptor: (IJ)Ljava/nio/ByteBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  
      value  

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

  public abstract float getFloat();
    descriptor: ()F
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.nio.ByteBuffer putFloat(float);
    descriptor: (F)Ljava/nio/ByteBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      value  

  public abstract float getFloat(int);
    descriptor: (I)F
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  

  public abstract java.nio.ByteBuffer putFloat(int, float);
    descriptor: (IF)Ljava/nio/ByteBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  
      value  

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

  public abstract double getDouble();
    descriptor: ()D
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.nio.ByteBuffer putDouble(double);
    descriptor: (D)Ljava/nio/ByteBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      value  

  public abstract double getDouble(int);
    descriptor: (I)D
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  

  public abstract java.nio.ByteBuffer putDouble(int, double);
    descriptor: (ID)Ljava/nio/ByteBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  
      value  

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

  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.ByteBuffer
            invokevirtual java.nio.ByteBuffer.compareTo:(Ljava/nio/ByteBuffer;)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.ByteBuffer.array:()[B
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/nio/Buffer;Ljava/lang/Comparable<Ljava/nio/ByteBuffer;>;
SourceFile: "ByteBuffer.java"