public class io.netty.buffer.ReadOnlyByteBuf extends io.netty.buffer.AbstractDerivedByteBuf
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.netty.buffer.ReadOnlyByteBuf
  super_class: io.netty.buffer.AbstractDerivedByteBuf
{
  private final io.netty.buffer.ByteBuf buffer;
    descriptor: Lio/netty/buffer/ByteBuf;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(io.netty.buffer.ByteBuf);
    descriptor: (Lio/netty/buffer/ByteBuf;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // io.netty.buffer.ByteBuf buffer
         0: .line 43
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.maxCapacity:()I
            invokespecial io.netty.buffer.AbstractDerivedByteBuf.<init>:(I)V
         1: .line 45
            aload 1 /* buffer */
            instanceof io.netty.buffer.ReadOnlyByteBuf
            ifne 2
            aload 1 /* buffer */
            instanceof io.netty.buffer.DuplicatedByteBuf
            ifeq 4
         2: .line 46
      StackMap locals: io.netty.buffer.ReadOnlyByteBuf io.netty.buffer.ByteBuf
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            putfield io.netty.buffer.ReadOnlyByteBuf.buffer:Lio/netty/buffer/ByteBuf;
         3: .line 47
            goto 5
         4: .line 48
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            putfield io.netty.buffer.ReadOnlyByteBuf.buffer:Lio/netty/buffer/ByteBuf;
         5: .line 50
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            aload 1 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.writerIndex:()I
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.setIndex:(II)Lio/netty/buffer/ByteBuf;
            pop
         6: .line 51
            return
        end local 1 // io.netty.buffer.ByteBuf buffer
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    7     1  buffer  Lio/netty/buffer/ByteBuf;
    MethodParameters:
        Name  Flags
      buffer  

  public boolean isReadOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 55
            iconst_1
            ireturn
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;

  public boolean isWritable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 60
            iconst_0
            ireturn
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;

  public boolean isWritable(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int numBytes
         0: .line 65
            iconst_0
            ireturn
        end local 1 // int numBytes
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  numBytes  I
    MethodParameters:
          Name  Flags
      numBytes  

  public int ensureWritable(int, boolean);
    descriptor: (IZ)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int minWritableBytes
        start local 2 // boolean force
         0: .line 70
            iconst_1
            ireturn
        end local 2 // boolean force
        end local 1 // int minWritableBytes
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  minWritableBytes  I
            0    1     2             force  Z
    MethodParameters:
                  Name  Flags
      minWritableBytes  
      force             

  public io.netty.buffer.ByteBuf ensureWritable(int);
    descriptor: (I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int minWritableBytes
         0: .line 75
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 1 // int minWritableBytes
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  minWritableBytes  I
    MethodParameters:
                  Name  Flags
      minWritableBytes  

  public io.netty.buffer.ByteBuf unwrap();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 80
            aload 0 /* this */
            getfield io.netty.buffer.ReadOnlyByteBuf.buffer:Lio/netty/buffer/ByteBuf;
            areturn
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;

  public io.netty.buffer.ByteBufAllocator alloc();
    descriptor: ()Lio/netty/buffer/ByteBufAllocator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 85
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.alloc:()Lio/netty/buffer/ByteBufAllocator;
            areturn
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;

  public java.nio.ByteOrder order();
    descriptor: ()Ljava/nio/ByteOrder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 91
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.order:()Ljava/nio/ByteOrder;
            areturn
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  public boolean isDirect();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 96
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.isDirect:()Z
            ireturn
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;

  public boolean hasArray();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 101
            iconst_0
            ireturn
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;

  public byte[] array();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 106
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;

  public int arrayOffset();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 111
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;

  public boolean hasMemoryAddress();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 116
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.hasMemoryAddress:()Z
            ireturn
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;

  public long memoryAddress();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 121
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.memoryAddress:()J
            lreturn
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;

  public io.netty.buffer.ByteBuf discardReadBytes();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 126
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;

  public io.netty.buffer.ByteBuf setBytes(int, io.netty.buffer.ByteBuf, int, int);
    descriptor: (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // io.netty.buffer.ByteBuf src
        start local 3 // int srcIndex
        start local 4 // int length
         0: .line 131
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 4 // int length
        end local 3 // int srcIndex
        end local 2 // io.netty.buffer.ByteBuf src
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1     index  I
            0    1     2       src  Lio/netty/buffer/ByteBuf;
            0    1     3  srcIndex  I
            0    1     4    length  I
    MethodParameters:
          Name  Flags
      index     
      src       
      srcIndex  
      length    

  public io.netty.buffer.ByteBuf setBytes(int, byte[], int, int);
    descriptor: (I[BII)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // byte[] src
        start local 3 // int srcIndex
        start local 4 // int length
         0: .line 136
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 4 // int length
        end local 3 // int srcIndex
        end local 2 // byte[] src
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1     index  I
            0    1     2       src  [B
            0    1     3  srcIndex  I
            0    1     4    length  I
    MethodParameters:
          Name  Flags
      index     
      src       
      srcIndex  
      length    

  public io.netty.buffer.ByteBuf setBytes(int, java.nio.ByteBuffer);
    descriptor: (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // java.nio.ByteBuffer src
         0: .line 141
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // java.nio.ByteBuffer src
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2    src  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      index  
      src    

  public io.netty.buffer.ByteBuf setByte(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 146
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setByte(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 151
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setShort(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 156
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setShort(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 161
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setShortLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 166
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setShortLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 171
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setMedium(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 176
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setMedium(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 181
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setMediumLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 186
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setMediumLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 191
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setInt(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 196
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setInt(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 201
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setIntLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 206
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setIntLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 211
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setLong(int, long);
    descriptor: (IJ)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 216
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setLong(int, long);
    descriptor: (IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 221
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setLongLE(int, long);
    descriptor: (IJ)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 226
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setLongLE(int, long);
    descriptor: (IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 231
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
            0    1     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  public int setBytes(int, java.io.InputStream, int);
    descriptor: (ILjava/io/InputStream;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // java.io.InputStream in
        start local 3 // int length
         0: .line 236
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 3 // int length
        end local 2 // java.io.InputStream in
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1   index  I
            0    1     2      in  Ljava/io/InputStream;
            0    1     3  length  I
    MethodParameters:
        Name  Flags
      index   
      in      
      length  

  public int setBytes(int, java.nio.channels.ScatteringByteChannel, int);
    descriptor: (ILjava/nio/channels/ScatteringByteChannel;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.ScatteringByteChannel in
        start local 3 // int length
         0: .line 241
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 3 // int length
        end local 2 // java.nio.channels.ScatteringByteChannel in
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1   index  I
            0    1     2      in  Ljava/nio/channels/ScatteringByteChannel;
            0    1     3  length  I
    MethodParameters:
        Name  Flags
      index   
      in      
      length  

  public int setBytes(int, java.nio.channels.FileChannel, long, int);
    descriptor: (ILjava/nio/channels/FileChannel;JI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=5
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.FileChannel in
        start local 3 // long position
        start local 5 // int length
         0: .line 246
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 5 // int length
        end local 3 // long position
        end local 2 // java.nio.channels.FileChannel in
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1     index  I
            0    1     2        in  Ljava/nio/channels/FileChannel;
            0    1     3  position  J
            0    1     5    length  I
    MethodParameters:
          Name  Flags
      index     
      in        
      position  
      length    

  public int getBytes(int, java.nio.channels.GatheringByteChannel, int);
    descriptor: (ILjava/nio/channels/GatheringByteChannel;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.GatheringByteChannel out
        start local 3 // int length
         0: .line 252
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* out */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/nio/channels/GatheringByteChannel;I)I
            ireturn
        end local 3 // int length
        end local 2 // java.nio.channels.GatheringByteChannel out
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1   index  I
            0    1     2     out  Ljava/nio/channels/GatheringByteChannel;
            0    1     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      out     
      length  

  public int getBytes(int, java.nio.channels.FileChannel, long, int);
    descriptor: (ILjava/nio/channels/FileChannel;JI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=5
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.FileChannel out
        start local 3 // long position
        start local 5 // int length
         0: .line 258
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* out */
            lload 3 /* position */
            iload 5 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/nio/channels/FileChannel;JI)I
            ireturn
        end local 5 // int length
        end local 3 // long position
        end local 2 // java.nio.channels.FileChannel out
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1     index  I
            0    1     2       out  Ljava/nio/channels/FileChannel;
            0    1     3  position  J
            0    1     5    length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      index     
      out       
      position  
      length    

  public io.netty.buffer.ByteBuf getBytes(int, java.io.OutputStream, int);
    descriptor: (ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // java.io.OutputStream out
        start local 3 // int length
         0: .line 264
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* out */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 265
            aload 0 /* this */
            areturn
        end local 3 // int length
        end local 2 // java.io.OutputStream out
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    2     1   index  I
            0    2     2     out  Ljava/io/OutputStream;
            0    2     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      out     
      length  

  public io.netty.buffer.ByteBuf getBytes(int, byte[], int, int);
    descriptor: (I[BII)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // byte[] dst
        start local 3 // int dstIndex
        start local 4 // int length
         0: .line 270
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* dst */
            iload 3 /* dstIndex */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(I[BII)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 271
            aload 0 /* this */
            areturn
        end local 4 // int length
        end local 3 // int dstIndex
        end local 2 // byte[] dst
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    2     1     index  I
            0    2     2       dst  [B
            0    2     3  dstIndex  I
            0    2     4    length  I
    MethodParameters:
          Name  Flags
      index     
      dst       
      dstIndex  
      length    

  public io.netty.buffer.ByteBuf getBytes(int, io.netty.buffer.ByteBuf, int, int);
    descriptor: (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // io.netty.buffer.ByteBuf dst
        start local 3 // int dstIndex
        start local 4 // int length
         0: .line 276
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* dst */
            iload 3 /* dstIndex */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 277
            aload 0 /* this */
            areturn
        end local 4 // int length
        end local 3 // int dstIndex
        end local 2 // io.netty.buffer.ByteBuf dst
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    2     1     index  I
            0    2     2       dst  Lio/netty/buffer/ByteBuf;
            0    2     3  dstIndex  I
            0    2     4    length  I
    MethodParameters:
          Name  Flags
      index     
      dst       
      dstIndex  
      length    

  public io.netty.buffer.ByteBuf getBytes(int, java.nio.ByteBuffer);
    descriptor: (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // java.nio.ByteBuffer dst
         0: .line 282
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 283
            aload 0 /* this */
            areturn
        end local 2 // java.nio.ByteBuffer dst
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    2     1  index  I
            0    2     2    dst  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      index  
      dst    

  public io.netty.buffer.ByteBuf duplicate();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 288
            new io.netty.buffer.ReadOnlyByteBuf
            dup
            aload 0 /* this */
            invokespecial io.netty.buffer.ReadOnlyByteBuf.<init>:(Lio/netty/buffer/ByteBuf;)V
            areturn
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;

  public io.netty.buffer.ByteBuf copy(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 293
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.copy:(II)Lio/netty/buffer/ByteBuf;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1   index  I
            0    1     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public io.netty.buffer.ByteBuf slice(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 298
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.slice:(II)Lio/netty/buffer/ByteBuf;
            invokestatic io.netty.buffer.Unpooled.unmodifiableBuffer:(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1   index  I
            0    1     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public byte getByte(int);
    descriptor: (I)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 303
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getByte:(I)B
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected byte _getByte(int);
    descriptor: (I)B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 308
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getByte:(I)B
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public short getShort(int);
    descriptor: (I)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 313
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getShort:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected short _getShort(int);
    descriptor: (I)S
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 318
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getShort:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public short getShortLE(int);
    descriptor: (I)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 323
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getShortLE:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected short _getShortLE(int);
    descriptor: (I)S
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 328
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getShortLE:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getUnsignedMedium(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 333
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedMedium:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getUnsignedMedium(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 338
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedMedium:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getUnsignedMediumLE(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 343
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedMediumLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getUnsignedMediumLE(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 348
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedMediumLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getInt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 353
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getInt:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getInt(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 358
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getInt:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getIntLE(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 363
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getIntLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getIntLE(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 368
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getIntLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long getLong(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 373
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getLong:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected long _getLong(int);
    descriptor: (I)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 378
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getLong:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long getLongLE(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 383
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getLongLE:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected long _getLongLE(int);
    descriptor: (I)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
         0: .line 388
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            invokevirtual io.netty.buffer.ByteBuf.getLongLE:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int nioBufferCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 393
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.nioBufferCount:()I
            ireturn
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;

  public java.nio.ByteBuffer nioBuffer(int, int);
    descriptor: (II)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 398
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.nioBuffer:(II)Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.asReadOnlyBuffer:()Ljava/nio/ByteBuffer;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1   index  I
            0    1     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public java.nio.ByteBuffer[] nioBuffers(int, int);
    descriptor: (II)[Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 403
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.nioBuffers:(II)[Ljava/nio/ByteBuffer;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1   index  I
            0    1     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public int forEachByte(int, int, io.netty.util.ByteProcessor);
    descriptor: (IILio/netty/util/ByteProcessor;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int length
        start local 3 // io.netty.util.ByteProcessor processor
         0: .line 408
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            aload 3 /* processor */
            invokevirtual io.netty.buffer.ByteBuf.forEachByte:(IILio/netty/util/ByteProcessor;)I
            ireturn
        end local 3 // io.netty.util.ByteProcessor processor
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1      index  I
            0    1     2     length  I
            0    1     3  processor  Lio/netty/util/ByteProcessor;
    MethodParameters:
           Name  Flags
      index      
      length     
      processor  

  public int forEachByteDesc(int, int, io.netty.util.ByteProcessor);
    descriptor: (IILio/netty/util/ByteProcessor;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int index
        start local 2 // int length
        start local 3 // io.netty.util.ByteProcessor processor
         0: .line 413
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            iload 1 /* index */
            iload 2 /* length */
            aload 3 /* processor */
            invokevirtual io.netty.buffer.ByteBuf.forEachByteDesc:(IILio/netty/util/ByteProcessor;)I
            ireturn
        end local 3 // io.netty.util.ByteProcessor processor
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1      index  I
            0    1     2     length  I
            0    1     3  processor  Lio/netty/util/ByteProcessor;
    MethodParameters:
           Name  Flags
      index      
      length     
      processor  

  public int capacity();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 418
            aload 0 /* this */
            invokevirtual io.netty.buffer.ReadOnlyByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.capacity:()I
            ireturn
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;

  public io.netty.buffer.ByteBuf capacity(int);
    descriptor: (I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
        start local 1 // int newCapacity
         0: .line 423
            new java.nio.ReadOnlyBufferException
            dup
            invokespecial java.nio.ReadOnlyBufferException.<init>:()V
            athrow
        end local 1 // int newCapacity
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lio/netty/buffer/ReadOnlyByteBuf;
            0    1     1  newCapacity  I
    MethodParameters:
             Name  Flags
      newCapacity  

  public io.netty.buffer.ByteBuf asReadOnly();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.ReadOnlyByteBuf this
         0: .line 428
            aload 0 /* this */
            areturn
        end local 0 // io.netty.buffer.ReadOnlyByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/ReadOnlyByteBuf;
}
SourceFile: "ReadOnlyByteBuf.java"
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()