public abstract class java.nio.Buffer
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: java.nio.Buffer
  super_class: java.lang.Object
{
  static final jdk.internal.misc.Unsafe UNSAFE;
    descriptor: Ljdk/internal/misc/Unsafe;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static final int SPLITERATOR_CHARACTERISTICS;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 16464

  private int mark;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int position;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int limit;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int capacity;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  long address;
    descriptor: J
    flags: (0x0000) 

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 186
            ldc Ljava/nio/Buffer;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic java.nio.Buffer.$assertionsDisabled:Z
         3: .line 188
            invokestatic jdk.internal.misc.Unsafe.getUnsafe:()Ljdk/internal/misc/Unsafe;
            putstatic java.nio.Buffer.UNSAFE:Ljdk/internal/misc/Unsafe;
         4: .line 719
            new java.nio.Buffer$1
            dup
            invokespecial java.nio.Buffer$1.<init>:()V
         5: .line 718
            invokestatic jdk.internal.misc.SharedSecrets.setJavaNioAccess:(Ljdk/internal/misc/JavaNioAccess;)V
         6: .line 733
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(int, int, int, int);
    descriptor: (IIII)V
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // java.nio.Buffer this
        start local 1 // int mark
        start local 2 // int pos
        start local 3 // int lim
        start local 4 // int cap
         0: .line 218
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 198
            aload 0 /* this */
            iconst_m1
            putfield java.nio.Buffer.mark:I
         2: .line 199
            aload 0 /* this */
            iconst_0
            putfield java.nio.Buffer.position:I
         3: .line 219
            iload 4 /* cap */
            ifge 5
         4: .line 220
            iload 4 /* cap */
            invokestatic java.nio.Buffer.createCapacityException:(I)Ljava/lang/IllegalArgumentException;
            athrow
         5: .line 221
      StackMap locals: java.nio.Buffer int int int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* cap */
            putfield java.nio.Buffer.capacity:I
         6: .line 222
            aload 0 /* this */
            iload 3 /* lim */
            invokevirtual java.nio.Buffer.limit:(I)Ljava/nio/Buffer;
            pop
         7: .line 223
            aload 0 /* this */
            iload 2 /* pos */
            invokevirtual java.nio.Buffer.position:(I)Ljava/nio/Buffer;
            pop
         8: .line 224
            iload 1 /* mark */
            iflt 14
         9: .line 225
            iload 1 /* mark */
            iload 2 /* pos */
            if_icmple 13
        10: .line 226
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "mark > position: ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        11: .line 227
            iload 1 /* mark */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " > "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* pos */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        12: .line 226
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 228
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* mark */
            putfield java.nio.Buffer.mark:I
        14: .line 230
      StackMap locals:
      StackMap stack:
            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.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Ljava/nio/Buffer;
            0   15     1  mark  I
            0   15     2   pos  I
            0   15     3   lim  I
            0   15     4   cap  I
    MethodParameters:
      Name  Flags
      mark  
      pos   
      lim   
      cap   

  static java.lang.IllegalArgumentException createSameBufferException();
    descriptor: ()Ljava/lang/IllegalArgumentException;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 242
            new java.lang.IllegalArgumentException
            dup
            ldc "The source buffer is this buffer"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static java.lang.IllegalArgumentException createCapacityException(int);
    descriptor: (I)Ljava/lang/IllegalArgumentException;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // int capacity
         0: .line 255
            getstatic java.nio.Buffer.$assertionsDisabled:Z
            ifne 1
            iload 0 /* capacity */
            iflt 1
            new java.lang.AssertionError
            dup
            ldc "capacity expected to be negative"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 256
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "capacity < 0: ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         2: .line 257
            iload 0 /* capacity */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " < 0)"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 256
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            areturn
        end local 0 // int capacity
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

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

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

  public java.nio.Buffer position(int);
    descriptor: (I)Ljava/nio/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.nio.Buffer this
        start local 1 // int newPosition
         0: .line 292
            iload 1 /* newPosition */
            aload 0 /* this */
            getfield java.nio.Buffer.limit:I
            if_icmple 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: iload 1 /* newPosition */
            ifge 3
            iconst_1
            goto 4
      StackMap locals:
      StackMap stack: int
         3: iconst_0
      StackMap locals: java.nio.Buffer int
      StackMap stack: int int
         4: ior
            ifeq 6
         5: .line 293
            aload 0 /* this */
            iload 1 /* newPosition */
            invokevirtual java.nio.Buffer.createPositionException:(I)Ljava/lang/IllegalArgumentException;
            athrow
         6: .line 294
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* newPosition */
            putfield java.nio.Buffer.position:I
         7: .line 295
            aload 0 /* this */
            getfield java.nio.Buffer.mark:I
            aload 0 /* this */
            getfield java.nio.Buffer.position:I
            if_icmple 8
            aload 0 /* this */
            iconst_m1
            putfield java.nio.Buffer.mark:I
         8: .line 296
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // int newPosition
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Ljava/nio/Buffer;
            0    9     1  newPosition  I
    MethodParameters:
             Name  Flags
      newPosition  

  private java.lang.IllegalArgumentException createPositionException(int);
    descriptor: (I)Ljava/lang/IllegalArgumentException;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.nio.Buffer this
        start local 1 // int newPosition
         0: .line 309
            aconst_null
            astore 2 /* msg */
        start local 2 // java.lang.String msg
         1: .line 311
            iload 1 /* newPosition */
            aload 0 /* this */
            getfield java.nio.Buffer.limit:I
            if_icmple 4
         2: .line 312
            new java.lang.StringBuilder
            dup
            ldc "newPosition > limit: ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* newPosition */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " > "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield java.nio.Buffer.limit:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 2 /* msg */
         3: .line 313
            goto 6
         4: .line 314
      StackMap locals: java.lang.String
      StackMap stack:
            getstatic java.nio.Buffer.$assertionsDisabled:Z
            ifne 5
            iload 1 /* newPosition */
            iflt 5
            new java.lang.AssertionError
            dup
            ldc "newPosition expected to be negative"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         5: .line 315
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "newPosition < 0: ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* newPosition */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " < 0)"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 2 /* msg */
         6: .line 318
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            aload 2 /* msg */
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            areturn
        end local 2 // java.lang.String msg
        end local 1 // int newPosition
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Ljava/nio/Buffer;
            0    7     1  newPosition  I
            1    7     2          msg  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      newPosition  

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

  public java.nio.Buffer limit(int);
    descriptor: (I)Ljava/nio/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.nio.Buffer this
        start local 1 // int newLimit
         0: .line 345
            iload 1 /* newLimit */
            aload 0 /* this */
            getfield java.nio.Buffer.capacity:I
            if_icmple 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: iload 1 /* newLimit */
            ifge 3
            iconst_1
            goto 4
      StackMap locals:
      StackMap stack: int
         3: iconst_0
      StackMap locals: java.nio.Buffer int
      StackMap stack: int int
         4: ior
            ifeq 6
         5: .line 346
            aload 0 /* this */
            iload 1 /* newLimit */
            invokevirtual java.nio.Buffer.createLimitException:(I)Ljava/lang/IllegalArgumentException;
            athrow
         6: .line 347
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* newLimit */
            putfield java.nio.Buffer.limit:I
         7: .line 348
            aload 0 /* this */
            getfield java.nio.Buffer.position:I
            iload 1 /* newLimit */
            if_icmple 8
            aload 0 /* this */
            iload 1 /* newLimit */
            putfield java.nio.Buffer.position:I
         8: .line 349
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.nio.Buffer.mark:I
            iload 1 /* newLimit */
            if_icmple 9
            aload 0 /* this */
            iconst_m1
            putfield java.nio.Buffer.mark:I
         9: .line 350
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // int newLimit
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Ljava/nio/Buffer;
            0   10     1  newLimit  I
    MethodParameters:
          Name  Flags
      newLimit  

  private java.lang.IllegalArgumentException createLimitException(int);
    descriptor: (I)Ljava/lang/IllegalArgumentException;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.nio.Buffer this
        start local 1 // int newLimit
         0: .line 363
            aconst_null
            astore 2 /* msg */
        start local 2 // java.lang.String msg
         1: .line 365
            iload 1 /* newLimit */
            aload 0 /* this */
            getfield java.nio.Buffer.capacity:I
            if_icmple 4
         2: .line 366
            new java.lang.StringBuilder
            dup
            ldc "newLimit > capacity: ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* newLimit */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " > "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield java.nio.Buffer.capacity:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 2 /* msg */
         3: .line 367
            goto 6
         4: .line 368
      StackMap locals: java.lang.String
      StackMap stack:
            getstatic java.nio.Buffer.$assertionsDisabled:Z
            ifne 5
            iload 1 /* newLimit */
            iflt 5
            new java.lang.AssertionError
            dup
            ldc "newLimit expected to be negative"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         5: .line 369
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "newLimit < 0: ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* newLimit */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " < 0)"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 2 /* msg */
         6: .line 372
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            aload 2 /* msg */
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            areturn
        end local 2 // java.lang.String msg
        end local 1 // int newLimit
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Ljava/nio/Buffer;
            0    7     1  newLimit  I
            1    7     2       msg  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      newLimit  

  public java.nio.Buffer mark();
    descriptor: ()Ljava/nio/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.Buffer this
         0: .line 381
            aload 0 /* this */
            aload 0 /* this */
            getfield java.nio.Buffer.position:I
            putfield java.nio.Buffer.mark:I
         1: .line 382
            aload 0 /* this */
            areturn
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/nio/Buffer;

  public java.nio.Buffer reset();
    descriptor: ()Ljava/nio/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.nio.Buffer this
         0: .line 397
            aload 0 /* this */
            getfield java.nio.Buffer.mark:I
            istore 1 /* m */
        start local 1 // int m
         1: .line 398
            iload 1 /* m */
            ifge 3
         2: .line 399
            new java.nio.InvalidMarkException
            dup
            invokespecial java.nio.InvalidMarkException.<init>:()V
            athrow
         3: .line 400
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* m */
            putfield java.nio.Buffer.position:I
         4: .line 401
            aload 0 /* this */
            areturn
        end local 1 // int m
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/nio/Buffer;
            1    5     1     m  I

  public java.nio.Buffer clear();
    descriptor: ()Ljava/nio/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.Buffer this
         0: .line 422
            aload 0 /* this */
            iconst_0
            putfield java.nio.Buffer.position:I
         1: .line 423
            aload 0 /* this */
            aload 0 /* this */
            getfield java.nio.Buffer.capacity:I
            putfield java.nio.Buffer.limit:I
         2: .line 424
            aload 0 /* this */
            iconst_m1
            putfield java.nio.Buffer.mark:I
         3: .line 425
            aload 0 /* this */
            areturn
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/nio/Buffer;

  public java.nio.Buffer flip();
    descriptor: ()Ljava/nio/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.Buffer this
         0: .line 450
            aload 0 /* this */
            aload 0 /* this */
            getfield java.nio.Buffer.position:I
            putfield java.nio.Buffer.limit:I
         1: .line 451
            aload 0 /* this */
            iconst_0
            putfield java.nio.Buffer.position:I
         2: .line 452
            aload 0 /* this */
            iconst_m1
            putfield java.nio.Buffer.mark:I
         3: .line 453
            aload 0 /* this */
            areturn
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/nio/Buffer;

  public java.nio.Buffer rewind();
    descriptor: ()Ljava/nio/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.Buffer this
         0: .line 472
            aload 0 /* this */
            iconst_0
            putfield java.nio.Buffer.position:I
         1: .line 473
            aload 0 /* this */
            iconst_m1
            putfield java.nio.Buffer.mark:I
         2: .line 474
            aload 0 /* this */
            areturn
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/nio/Buffer;

  public final int remaining();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.Buffer this
         0: .line 484
            aload 0 /* this */
            getfield java.nio.Buffer.limit:I
            aload 0 /* this */
            getfield java.nio.Buffer.position:I
            isub
            ireturn
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/Buffer;

  public final boolean hasRemaining();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.Buffer this
         0: .line 495
            aload 0 /* this */
            getfield java.nio.Buffer.position:I
            aload 0 /* this */
            getfield java.nio.Buffer.limit:I
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/nio/Buffer;

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

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

  public abstract java.lang.Object array();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

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

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

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

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

  abstract java.lang.Object base();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0400) ACC_ABSTRACT

  final int nextGetIndex();
    descriptor: ()I
    flags: (0x0010) ACC_FINAL
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.nio.Buffer this
         0: .line 640
            aload 0 /* this */
            getfield java.nio.Buffer.position:I
            istore 1 /* p */
        start local 1 // int p
         1: .line 641
            iload 1 /* p */
            aload 0 /* this */
            getfield java.nio.Buffer.limit:I
            if_icmplt 3
         2: .line 642
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         3: .line 643
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* p */
            iconst_1
            iadd
            putfield java.nio.Buffer.position:I
         4: .line 644
            iload 1 /* p */
            ireturn
        end local 1 // int p
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/nio/Buffer;
            1    5     1     p  I

  final int nextGetIndex(int);
    descriptor: (I)I
    flags: (0x0010) ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.nio.Buffer this
        start local 1 // int nb
         0: .line 648
            aload 0 /* this */
            getfield java.nio.Buffer.position:I
            istore 2 /* p */
        start local 2 // int p
         1: .line 649
            aload 0 /* this */
            getfield java.nio.Buffer.limit:I
            iload 2 /* p */
            isub
            iload 1 /* nb */
            if_icmpge 3
         2: .line 650
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         3: .line 651
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* p */
            iload 1 /* nb */
            iadd
            putfield java.nio.Buffer.position:I
         4: .line 652
            iload 2 /* p */
            ireturn
        end local 2 // int p
        end local 1 // int nb
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/nio/Buffer;
            0    5     1    nb  I
            1    5     2     p  I
    MethodParameters:
      Name  Flags
      nb    

  final int nextPutIndex();
    descriptor: ()I
    flags: (0x0010) ACC_FINAL
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.nio.Buffer this
         0: .line 663
            aload 0 /* this */
            getfield java.nio.Buffer.position:I
            istore 1 /* p */
        start local 1 // int p
         1: .line 664
            iload 1 /* p */
            aload 0 /* this */
            getfield java.nio.Buffer.limit:I
            if_icmplt 3
         2: .line 665
            new java.nio.BufferOverflowException
            dup
            invokespecial java.nio.BufferOverflowException.<init>:()V
            athrow
         3: .line 666
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* p */
            iconst_1
            iadd
            putfield java.nio.Buffer.position:I
         4: .line 667
            iload 1 /* p */
            ireturn
        end local 1 // int p
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/nio/Buffer;
            1    5     1     p  I

  final int nextPutIndex(int);
    descriptor: (I)I
    flags: (0x0010) ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.nio.Buffer this
        start local 1 // int nb
         0: .line 671
            aload 0 /* this */
            getfield java.nio.Buffer.position:I
            istore 2 /* p */
        start local 2 // int p
         1: .line 672
            aload 0 /* this */
            getfield java.nio.Buffer.limit:I
            iload 2 /* p */
            isub
            iload 1 /* nb */
            if_icmpge 3
         2: .line 673
            new java.nio.BufferOverflowException
            dup
            invokespecial java.nio.BufferOverflowException.<init>:()V
            athrow
         3: .line 674
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* p */
            iload 1 /* nb */
            iadd
            putfield java.nio.Buffer.position:I
         4: .line 675
            iload 2 /* p */
            ireturn
        end local 2 // int p
        end local 1 // int nb
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/nio/Buffer;
            0    5     1    nb  I
            1    5     2     p  I
    MethodParameters:
      Name  Flags
      nb    

  final int checkIndex(int);
    descriptor: (I)I
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.nio.Buffer this
        start local 1 // int i
         0: .line 685
            iload 1 /* i */
            iflt 1
            iload 1 /* i */
            aload 0 /* this */
            getfield java.nio.Buffer.limit:I
            if_icmplt 2
         1: .line 686
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 687
      StackMap locals:
      StackMap stack:
            iload 1 /* i */
            ireturn
        end local 1 // int i
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/nio/Buffer;
            0    3     1     i  I
    RuntimeVisibleAnnotations: 
      jdk.internal.HotSpotIntrinsicCandidate()
    MethodParameters:
      Name  Flags
      i     

  final int checkIndex(int, int);
    descriptor: (II)I
    flags: (0x0010) ACC_FINAL
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // java.nio.Buffer this
        start local 1 // int i
        start local 2 // int nb
         0: .line 691
            iload 1 /* i */
            iflt 1
            iload 2 /* nb */
            aload 0 /* this */
            getfield java.nio.Buffer.limit:I
            iload 1 /* i */
            isub
            if_icmple 2
         1: .line 692
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 693
      StackMap locals:
      StackMap stack:
            iload 1 /* i */
            ireturn
        end local 2 // int nb
        end local 1 // int i
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/nio/Buffer;
            0    3     1     i  I
            0    3     2    nb  I
    MethodParameters:
      Name  Flags
      i     
      nb    

  final int markValue();
    descriptor: ()I
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.Buffer this
         0: .line 697
            aload 0 /* this */
            getfield java.nio.Buffer.mark:I
            ireturn
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/Buffer;

  final void truncate();
    descriptor: ()V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.Buffer this
         0: .line 701
            aload 0 /* this */
            iconst_m1
            putfield java.nio.Buffer.mark:I
         1: .line 702
            aload 0 /* this */
            iconst_0
            putfield java.nio.Buffer.position:I
         2: .line 703
            aload 0 /* this */
            iconst_0
            putfield java.nio.Buffer.limit:I
         3: .line 704
            aload 0 /* this */
            iconst_0
            putfield java.nio.Buffer.capacity:I
         4: .line 705
            return
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/nio/Buffer;

  final void discardMark();
    descriptor: ()V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.Buffer this
         0: .line 708
            aload 0 /* this */
            iconst_m1
            putfield java.nio.Buffer.mark:I
         1: .line 709
            return
        end local 0 // java.nio.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/nio/Buffer;

  static void checkBounds(int, int, int);
    descriptor: (III)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // int off
        start local 1 // int len
        start local 2 // int size
         0: .line 712
            iload 0 /* off */
            iload 1 /* len */
            ior
            iload 0 /* off */
            iload 1 /* len */
            iadd
            ior
            iload 2 /* size */
            iload 0 /* off */
            iload 1 /* len */
            iadd
            isub
            ior
            ifge 2
         1: .line 713
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 714
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int size
        end local 1 // int len
        end local 0 // int off
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0   off  I
            0    3     1   len  I
            0    3     2  size  I
    MethodParameters:
      Name  Flags
      off   
      len   
      size  
}
SourceFile: "Buffer.java"
NestMembers:
  java.nio.Buffer$1
InnerClasses:
  java.nio.Buffer$1