public abstract class java.nio.ShortBuffer extends java.nio.Buffer implements java.lang.Comparable<java.nio.ShortBuffer>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: java.nio.ShortBuffer
  super_class: java.nio.Buffer
{
  final short[] hb;
    descriptor: [S
    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, short[], int);
    descriptor: (IIII[SI)V
    flags: (0x0000) 
    Code:
      stack=5, locals=7, args_size=7
        start local 0 // java.nio.ShortBuffer this
        start local 1 // int mark
        start local 2 // int pos
        start local 3 // int lim
        start local 4 // int cap
        start local 5 // short[] 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.ShortBuffer.hb:[S
         2: .line 283
            aload 0 /* this */
            iload 6 /* offset */
            putfield java.nio.ShortBuffer.offset:I
         3: .line 284
            return
        end local 6 // int offset
        end local 5 // short[] 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.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Ljava/nio/ShortBuffer;
            0    4     1    mark  I
            0    4     2     pos  I
            0    4     3     lim  I
            0    4     4     cap  I
            0    4     5      hb  [S
            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.ShortBuffer 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.ShortBuffer.<init>:(IIII[SI)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.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/nio/ShortBuffer;
            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   

  java.lang.Object base();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.ShortBuffer this
         0: .line 294
            aload 0 /* this */
            getfield java.nio.ShortBuffer.hb:[S
            areturn
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/ShortBuffer;

  public static java.nio.ShortBuffer allocate(int);
    descriptor: (I)Ljava/nio/ShortBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // int capacity
         0: .line 346
            iload 0 /* capacity */
            ifge 2
         1: .line 347
            iload 0 /* capacity */
            invokestatic java.nio.ShortBuffer.createCapacityException:(I)Ljava/lang/IllegalArgumentException;
            athrow
         2: .line 348
      StackMap locals:
      StackMap stack:
            new java.nio.HeapShortBuffer
            dup
            iload 0 /* capacity */
            iload 0 /* capacity */
            invokespecial java.nio.HeapShortBuffer.<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.ShortBuffer wrap(short[], int, int);
    descriptor: ([SII)Ljava/nio/ShortBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // short[] array
        start local 1 // int offset
        start local 2 // int length
         0: .line 393
            new java.nio.HeapShortBuffer
            dup
            aload 0 /* array */
            iload 1 /* offset */
            iload 2 /* length */
            invokespecial java.nio.HeapShortBuffer.<init>:([SII)V
         1: areturn
         2: .line 394
      StackMap locals:
      StackMap stack: java.lang.IllegalArgumentException
            pop
         3: .line 395
            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 // short[] array
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0   array  [S
            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.ShortBuffer wrap(short[]);
    descriptor: ([S)Ljava/nio/ShortBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // short[] array
         0: .line 422
            aload 0 /* array */
            iconst_0
            aload 0 /* array */
            arraylength
            invokestatic java.nio.ShortBuffer.wrap:([SII)Ljava/nio/ShortBuffer;
            areturn
        end local 0 // short[] array
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  array  [S
    MethodParameters:
       Name  Flags
      array  

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

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

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

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

  public abstract java.nio.ShortBuffer put(short);
    descriptor: (S)Ljava/nio/ShortBuffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      s     

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

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

  public java.nio.ShortBuffer get(short[], int, int);
    descriptor: ([SII)Ljava/nio/ShortBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // java.nio.ShortBuffer this
        start local 1 // short[] dst
        start local 2 // int offset
        start local 3 // int length
         0: .line 733
            iload 2 /* offset */
            iload 3 /* length */
            aload 1 /* dst */
            arraylength
            invokestatic java.nio.ShortBuffer.checkBounds:(III)V
         1: .line 734
            iload 3 /* length */
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.remaining:()I
            if_icmple 3
         2: .line 735
            new java.nio.BufferUnderflowException
            dup
            invokespecial java.nio.BufferUnderflowException.<init>:()V
            athrow
         3: .line 736
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* length */
            iadd
            istore 4 /* end */
        start local 4 // int end
         4: .line 737
            iload 2 /* offset */
            istore 5 /* i */
        start local 5 // int i
         5: goto 8
         6: .line 738
      StackMap locals: int int
      StackMap stack:
            aload 1 /* dst */
            iload 5 /* i */
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.get:()S
            sastore
         7: .line 737
            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 739
            aload 0 /* this */
            areturn
        end local 4 // int end
        end local 3 // int length
        end local 2 // int offset
        end local 1 // short[] dst
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Ljava/nio/ShortBuffer;
            0   10     1     dst  [S
            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.ShortBuffer get(short[]);
    descriptor: ([S)Ljava/nio/ShortBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.nio.ShortBuffer this
        start local 1 // short[] dst
         0: .line 762
            aload 0 /* this */
            aload 1 /* dst */
            iconst_0
            aload 1 /* dst */
            arraylength
            invokevirtual java.nio.ShortBuffer.get:([SII)Ljava/nio/ShortBuffer;
            areturn
        end local 1 // short[] dst
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/ShortBuffer;
            0    1     1   dst  [S
    MethodParameters:
      Name  Flags
      dst   

  public java.nio.ShortBuffer put(java.nio.ShortBuffer);
    descriptor: (Ljava/nio/ShortBuffer;)Ljava/nio/ShortBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // java.nio.ShortBuffer this
        start local 1 // java.nio.ShortBuffer src
         0: .line 810
            aload 1 /* src */
            aload 0 /* this */
            if_acmpne 2
         1: .line 811
            invokestatic java.nio.ShortBuffer.createSameBufferException:()Ljava/lang/IllegalArgumentException;
            athrow
         2: .line 812
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.isReadOnly:()Z
            ifeq 4
         3: .line 813
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
         4: .line 814
      StackMap locals:
      StackMap stack:
            aload 1 /* src */
            invokevirtual java.nio.ShortBuffer.remaining:()I
            istore 2 /* n */
        start local 2 // int n
         5: .line 815
            iload 2 /* n */
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.remaining:()I
            if_icmple 7
         6: .line 816
            new java.nio.BufferOverflowException
            dup
            invokespecial java.nio.BufferOverflowException.<init>:()V
            athrow
         7: .line 817
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         8: goto 11
         9: .line 818
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* src */
            invokevirtual java.nio.ShortBuffer.get:()S
            invokevirtual java.nio.ShortBuffer.put:(S)Ljava/nio/ShortBuffer;
            pop
        10: .line 817
            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 819
            aload 0 /* this */
            areturn
        end local 2 // int n
        end local 1 // java.nio.ShortBuffer src
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Ljava/nio/ShortBuffer;
            0   13     1   src  Ljava/nio/ShortBuffer;
            5   13     2     n  I
            8   12     3     i  I
    MethodParameters:
      Name  Flags
      src   

  public java.nio.ShortBuffer put(short[], int, int);
    descriptor: ([SII)Ljava/nio/ShortBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // java.nio.ShortBuffer this
        start local 1 // short[] src
        start local 2 // int offset
        start local 3 // int length
         0: .line 874
            iload 2 /* offset */
            iload 3 /* length */
            aload 1 /* src */
            arraylength
            invokestatic java.nio.ShortBuffer.checkBounds:(III)V
         1: .line 875
            iload 3 /* length */
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.remaining:()I
            if_icmple 3
         2: .line 876
            new java.nio.BufferOverflowException
            dup
            invokespecial java.nio.BufferOverflowException.<init>:()V
            athrow
         3: .line 877
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            iload 3 /* length */
            iadd
            istore 4 /* end */
        start local 4 // int end
         4: .line 878
            iload 2 /* offset */
            istore 5 /* i */
        start local 5 // int i
         5: goto 8
         6: .line 879
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* src */
            iload 5 /* i */
            saload
            invokevirtual java.nio.ShortBuffer.put:(S)Ljava/nio/ShortBuffer;
            pop
         7: .line 878
            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 880
            aload 0 /* this */
            areturn
        end local 4 // int end
        end local 3 // int length
        end local 2 // int offset
        end local 1 // short[] src
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Ljava/nio/ShortBuffer;
            0   10     1     src  [S
            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.ShortBuffer put(short[]);
    descriptor: ([S)Ljava/nio/ShortBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.nio.ShortBuffer this
        start local 1 // short[] src
         0: .line 906
            aload 0 /* this */
            aload 1 /* src */
            iconst_0
            aload 1 /* src */
            arraylength
            invokevirtual java.nio.ShortBuffer.put:([SII)Ljava/nio/ShortBuffer;
            areturn
        end local 1 // short[] src
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/nio/ShortBuffer;
            0    1     1   src  [S
    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.ShortBuffer this
         0: .line 1017
            aload 0 /* this */
            getfield java.nio.ShortBuffer.hb:[S
            ifnull 1
            aload 0 /* this */
            getfield java.nio.ShortBuffer.isReadOnly:Z
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/nio/ShortBuffer;

  public final short[] array();
    descriptor: ()[S
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.ShortBuffer this
         0: .line 1040
            aload 0 /* this */
            getfield java.nio.ShortBuffer.hb:[S
            ifnonnull 2
         1: .line 1041
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
         2: .line 1042
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.nio.ShortBuffer.isReadOnly:Z
            ifeq 4
         3: .line 1043
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
         4: .line 1044
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.nio.ShortBuffer.hb:[S
            areturn
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/nio/ShortBuffer;

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

  public final java.nio.ShortBuffer position(int);
    descriptor: (I)Ljava/nio/ShortBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.nio.ShortBuffer this
        start local 1 // int newPosition
         0: .line 1086
            aload 0 /* this */
            iload 1 /* newPosition */
            invokespecial java.nio.Buffer.position:(I)Ljava/nio/Buffer;
            pop
         1: .line 1087
            aload 0 /* this */
            areturn
        end local 1 // int newPosition
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Ljava/nio/ShortBuffer;
            0    2     1  newPosition  I
    MethodParameters:
             Name  Flags
      newPosition  

  public final java.nio.ShortBuffer limit(int);
    descriptor: (I)Ljava/nio/ShortBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.nio.ShortBuffer this
        start local 1 // int newLimit
         0: .line 1099
            aload 0 /* this */
            iload 1 /* newLimit */
            invokespecial java.nio.Buffer.limit:(I)Ljava/nio/Buffer;
            pop
         1: .line 1100
            aload 0 /* this */
            areturn
        end local 1 // int newLimit
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljava/nio/ShortBuffer;
            0    2     1  newLimit  I
    MethodParameters:
          Name  Flags
      newLimit  

  public final java.nio.ShortBuffer mark();
    descriptor: ()Ljava/nio/ShortBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.ShortBuffer this
         0: .line 1112
            aload 0 /* this */
            invokespecial java.nio.Buffer.mark:()Ljava/nio/Buffer;
            pop
         1: .line 1113
            aload 0 /* this */
            areturn
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/nio/ShortBuffer;

  public final java.nio.ShortBuffer reset();
    descriptor: ()Ljava/nio/ShortBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.ShortBuffer this
         0: .line 1125
            aload 0 /* this */
            invokespecial java.nio.Buffer.reset:()Ljava/nio/Buffer;
            pop
         1: .line 1126
            aload 0 /* this */
            areturn
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/nio/ShortBuffer;

  public final java.nio.ShortBuffer clear();
    descriptor: ()Ljava/nio/ShortBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.ShortBuffer this
         0: .line 1138
            aload 0 /* this */
            invokespecial java.nio.Buffer.clear:()Ljava/nio/Buffer;
            pop
         1: .line 1139
            aload 0 /* this */
            areturn
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/nio/ShortBuffer;

  public final java.nio.ShortBuffer flip();
    descriptor: ()Ljava/nio/ShortBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.ShortBuffer this
         0: .line 1151
            aload 0 /* this */
            invokespecial java.nio.Buffer.flip:()Ljava/nio/Buffer;
            pop
         1: .line 1152
            aload 0 /* this */
            areturn
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/nio/ShortBuffer;

  public final java.nio.ShortBuffer rewind();
    descriptor: ()Ljava/nio/ShortBuffer;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.ShortBuffer this
         0: .line 1164
            aload 0 /* this */
            invokespecial java.nio.Buffer.rewind:()Ljava/nio/Buffer;
            pop
         1: .line 1165
            aload 0 /* this */
            areturn
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/nio/ShortBuffer;

  public abstract java.nio.ShortBuffer compact();
    descriptor: ()Ljava/nio/ShortBuffer;
    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.ShortBuffer this
         0: .line 1225
            new java.lang.StringBuffer
            dup
            invokespecial java.lang.StringBuffer.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuffer sb
         1: .line 1226
            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 1227
            aload 1 /* sb */
            ldc "[pos="
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         3: .line 1228
            aload 1 /* sb */
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.position:()I
            invokevirtual java.lang.StringBuffer.append:(I)Ljava/lang/StringBuffer;
            pop
         4: .line 1229
            aload 1 /* sb */
            ldc " lim="
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         5: .line 1230
            aload 1 /* sb */
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.limit:()I
            invokevirtual java.lang.StringBuffer.append:(I)Ljava/lang/StringBuffer;
            pop
         6: .line 1231
            aload 1 /* sb */
            ldc " cap="
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         7: .line 1232
            aload 1 /* sb */
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.capacity:()I
            invokevirtual java.lang.StringBuffer.append:(I)Ljava/lang/StringBuffer;
            pop
         8: .line 1233
            aload 1 /* sb */
            ldc "]"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         9: .line 1234
            aload 1 /* sb */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuffer sb
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Ljava/nio/ShortBuffer;
            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.ShortBuffer this
         0: .line 1256
            iconst_1
            istore 1 /* h */
        start local 1 // int h
         1: .line 1257
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.position:()I
            istore 2 /* p */
        start local 2 // int p
         2: .line 1258
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.limit:()I
            iconst_1
            isub
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 1262
      StackMap locals: int int int
      StackMap stack:
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual java.nio.ShortBuffer.get:(I)S
            iadd
            istore 1 /* h */
         5: .line 1258
            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 1264
            iload 1 /* h */
            ireturn
        end local 2 // int p
        end local 1 // int h
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/nio/ShortBuffer;
            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=5, locals=3, args_size=2
        start local 0 // java.nio.ShortBuffer this
        start local 1 // java.lang.Object ob
         0: .line 1300
            aload 0 /* this */
            aload 1 /* ob */
            if_acmpne 2
         1: .line 1301
            iconst_1
            ireturn
         2: .line 1302
      StackMap locals:
      StackMap stack:
            aload 1 /* ob */
            instanceof java.nio.ShortBuffer
            ifne 4
         3: .line 1303
            iconst_0
            ireturn
         4: .line 1304
      StackMap locals:
      StackMap stack:
            aload 1 /* ob */
            checkcast java.nio.ShortBuffer
            astore 2 /* that */
        start local 2 // java.nio.ShortBuffer that
         5: .line 1305
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.remaining:()I
            aload 2 /* that */
            invokevirtual java.nio.ShortBuffer.remaining:()I
            if_icmpeq 7
         6: .line 1306
            iconst_0
            ireturn
         7: .line 1307
      StackMap locals: java.nio.ShortBuffer
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.position:()I
         8: .line 1308
            aload 2 /* that */
            aload 2 /* that */
            invokevirtual java.nio.ShortBuffer.position:()I
         9: .line 1309
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.remaining:()I
        10: .line 1307
            invokestatic java.nio.BufferMismatch.mismatch:(Ljava/nio/ShortBuffer;ILjava/nio/ShortBuffer;II)I
            ifge 11
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        11: iconst_0
            ireturn
        end local 2 // java.nio.ShortBuffer that
        end local 1 // java.lang.Object ob
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Ljava/nio/ShortBuffer;
            0   12     1    ob  Ljava/lang/Object;
            5   12     2  that  Ljava/nio/ShortBuffer;
    MethodParameters:
      Name  Flags
      ob    

  public int compareTo(java.nio.ShortBuffer);
    descriptor: (Ljava/nio/ShortBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // java.nio.ShortBuffer this
        start local 1 // java.nio.ShortBuffer that
         0: .line 1336
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.position:()I
         1: .line 1337
            aload 1 /* that */
            aload 1 /* that */
            invokevirtual java.nio.ShortBuffer.position:()I
         2: .line 1338
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.remaining:()I
            aload 1 /* that */
            invokevirtual java.nio.ShortBuffer.remaining:()I
            invokestatic java.lang.Math.min:(II)I
         3: .line 1336
            invokestatic java.nio.BufferMismatch.mismatch:(Ljava/nio/ShortBuffer;ILjava/nio/ShortBuffer;II)I
            istore 2 /* i */
        start local 2 // int i
         4: .line 1339
            iload 2 /* i */
            iflt 6
         5: .line 1340
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.position:()I
            iload 2 /* i */
            iadd
            invokevirtual java.nio.ShortBuffer.get:(I)S
            aload 1 /* that */
            aload 1 /* that */
            invokevirtual java.nio.ShortBuffer.position:()I
            iload 2 /* i */
            iadd
            invokevirtual java.nio.ShortBuffer.get:(I)S
            invokestatic java.nio.ShortBuffer.compare:(SS)I
            ireturn
         6: .line 1342
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.remaining:()I
            aload 1 /* that */
            invokevirtual java.nio.ShortBuffer.remaining:()I
            isub
            ireturn
        end local 2 // int i
        end local 1 // java.nio.ShortBuffer that
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljava/nio/ShortBuffer;
            0    7     1  that  Ljava/nio/ShortBuffer;
            4    7     2     i  I
    MethodParameters:
      Name  Flags
      that  

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

  public int mismatch(java.nio.ShortBuffer);
    descriptor: (Ljava/nio/ShortBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // java.nio.ShortBuffer this
        start local 1 // java.nio.ShortBuffer that
         0: .line 1381
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.remaining:()I
            aload 1 /* that */
            invokevirtual java.nio.ShortBuffer.remaining:()I
            invokestatic java.lang.Math.min:(II)I
            istore 2 /* length */
        start local 2 // int length
         1: .line 1382
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.position:()I
         2: .line 1383
            aload 1 /* that */
            aload 1 /* that */
            invokevirtual java.nio.ShortBuffer.position:()I
         3: .line 1384
            iload 2 /* length */
         4: .line 1382
            invokestatic java.nio.BufferMismatch.mismatch:(Ljava/nio/ShortBuffer;ILjava/nio/ShortBuffer;II)I
            istore 3 /* r */
        start local 3 // int r
         5: .line 1385
            iload 3 /* r */
            iconst_m1
            if_icmpne 6
            aload 0 /* this */
            invokevirtual java.nio.ShortBuffer.remaining:()I
            aload 1 /* that */
            invokevirtual java.nio.ShortBuffer.remaining:()I
            if_icmpeq 6
            iload 2 /* length */
            goto 7
      StackMap locals: int int
      StackMap stack:
         6: iload 3 /* r */
      StackMap locals:
      StackMap stack: int
         7: ireturn
        end local 3 // int r
        end local 2 // int length
        end local 1 // java.nio.ShortBuffer that
        end local 0 // java.nio.ShortBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Ljava/nio/ShortBuffer;
            0    8     1    that  Ljava/nio/ShortBuffer;
            1    8     2  length  I
            5    8     3       r  I
    MethodParameters:
      Name  Flags
      that  

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

  public java.nio.Buffer rewind();
    descriptor: ()Ljava/nio/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.nio.ShortBuffer.rewind:()Ljava/nio/ShortBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.nio.Buffer reset();
    descriptor: ()Ljava/nio/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.nio.ShortBuffer.reset:()Ljava/nio/ShortBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.nio.Buffer clear();
    descriptor: ()Ljava/nio/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.nio.ShortBuffer.clear:()Ljava/nio/ShortBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.nio.Buffer slice();
    descriptor: ()Ljava/nio/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.nio.ShortBuffer.slice:()Ljava/nio/ShortBuffer;
            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.ShortBuffer
            invokevirtual java.nio.ShortBuffer.compareTo:(Ljava/nio/ShortBuffer;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.nio.Buffer position(int);
    descriptor: (I)Ljava/nio/Buffer;
    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.ShortBuffer.position:(I)Ljava/nio/ShortBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.nio.Buffer limit(int);
    descriptor: (I)Ljava/nio/Buffer;
    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.ShortBuffer.limit:(I)Ljava/nio/ShortBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.nio.Buffer mark();
    descriptor: ()Ljava/nio/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.nio.ShortBuffer.mark:()Ljava/nio/ShortBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.nio.Buffer duplicate();
    descriptor: ()Ljava/nio/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.nio.ShortBuffer.duplicate:()Ljava/nio/ShortBuffer;
            areturn
      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.ShortBuffer.array:()[S
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.nio.Buffer flip();
    descriptor: ()Ljava/nio/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual java.nio.ShortBuffer.flip:()Ljava/nio/ShortBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/nio/Buffer;Ljava/lang/Comparable<Ljava/nio/ShortBuffer;>;
SourceFile: "ShortBuffer.java"