public class io.vertx.core.buffer.impl.BufferImpl implements io.vertx.core.buffer.Buffer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.buffer.impl.BufferImpl
  super_class: java.lang.Object
{
  private io.netty.buffer.ByteBuf buffer;
    descriptor: Lio/netty/buffer/ByteBuf;
    flags: (0x0002) ACC_PRIVATE

  public static io.vertx.core.buffer.Buffer buffer(int);
    descriptor: (I)Lio/vertx/core/buffer/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int initialSizeHint
         0: .line 34
            new io.vertx.core.buffer.impl.BufferImpl
            dup
            iload 0 /* initialSizeHint */
            invokespecial io.vertx.core.buffer.impl.BufferImpl.<init>:(I)V
            areturn
        end local 0 // int initialSizeHint
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0  initialSizeHint  I
    MethodParameters:
                 Name  Flags
      initialSizeHint  

  public static io.vertx.core.buffer.Buffer buffer();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 38
            new io.vertx.core.buffer.impl.BufferImpl
            dup
            invokespecial io.vertx.core.buffer.impl.BufferImpl.<init>:()V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static io.vertx.core.buffer.Buffer buffer(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.String str
         0: .line 42
            new io.vertx.core.buffer.impl.BufferImpl
            dup
            aload 0 /* str */
            invokespecial io.vertx.core.buffer.impl.BufferImpl.<init>:(Ljava/lang/String;)V
            areturn
        end local 0 // java.lang.String str
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   str  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      str   

  public static io.vertx.core.buffer.Buffer buffer(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.String str
        start local 1 // java.lang.String enc
         0: .line 46
            new io.vertx.core.buffer.impl.BufferImpl
            dup
            aload 0 /* str */
            aload 1 /* enc */
            invokespecial io.vertx.core.buffer.impl.BufferImpl.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            areturn
        end local 1 // java.lang.String enc
        end local 0 // java.lang.String str
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   str  Ljava/lang/String;
            0    1     1   enc  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      str   
      enc   

  public static io.vertx.core.buffer.Buffer buffer(byte[]);
    descriptor: ([B)Lio/vertx/core/buffer/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // byte[] bytes
         0: .line 50
            new io.vertx.core.buffer.impl.BufferImpl
            dup
            aload 0 /* bytes */
            invokespecial io.vertx.core.buffer.impl.BufferImpl.<init>:([B)V
            areturn
        end local 0 // byte[] bytes
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  bytes  [B
    MethodParameters:
       Name  Flags
      bytes  

  public static io.vertx.core.buffer.Buffer buffer(io.netty.buffer.ByteBuf);
    descriptor: (Lio/netty/buffer/ByteBuf;)Lio/vertx/core/buffer/Buffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.netty.buffer.ByteBuf byteBuffer
         0: .line 54
            new io.vertx.core.buffer.impl.BufferImpl
            dup
            aload 0 /* byteBuffer */
            invokespecial io.vertx.core.buffer.impl.BufferImpl.<init>:(Lio/netty/buffer/ByteBuf;)V
            areturn
        end local 0 // io.netty.buffer.ByteBuf byteBuffer
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0  byteBuffer  Lio/netty/buffer/ByteBuf;
    MethodParameters:
            Name  Flags
      byteBuffer  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
         0: .line 60
            aload 0 /* this */
            iconst_0
            invokespecial io.vertx.core.buffer.impl.BufferImpl.<init>:(I)V
         1: .line 61
            return
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int initialSizeHint
         0: .line 63
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 64
            aload 0 /* this */
            getstatic io.vertx.core.buffer.impl.VertxByteBufAllocator.DEFAULT:Lio/vertx/core/buffer/impl/VertxByteBufAllocator;
            iload 1 /* initialSizeHint */
            ldc 2147483647
            invokevirtual io.vertx.core.buffer.impl.VertxByteBufAllocator.heapBuffer:(II)Lio/netty/buffer/ByteBuf;
            putfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
         2: .line 65
            return
        end local 1 // int initialSizeHint
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1  initialSizeHint  I
    MethodParameters:
                 Name  Flags
      initialSizeHint  

  void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // byte[] bytes
         0: .line 67
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 68
            aload 0 /* this */
            getstatic io.vertx.core.buffer.impl.VertxByteBufAllocator.DEFAULT:Lio/vertx/core/buffer/impl/VertxByteBufAllocator;
            aload 1 /* bytes */
            arraylength
            ldc 2147483647
            invokevirtual io.vertx.core.buffer.impl.VertxByteBufAllocator.heapBuffer:(II)Lio/netty/buffer/ByteBuf;
            aload 1 /* bytes */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:([B)Lio/netty/buffer/ByteBuf;
            putfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
         2: .line 69
            return
        end local 1 // byte[] bytes
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1  bytes  [B
    MethodParameters:
       Name  Flags
      bytes  

  void <init>(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // java.lang.String str
        start local 2 // java.lang.String enc
         0: .line 72
            aload 0 /* this */
            aload 1 /* str */
            aload 2 /* enc */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            invokespecial io.vertx.core.buffer.impl.BufferImpl.<init>:([B)V
         1: .line 73
            return
        end local 2 // java.lang.String enc
        end local 1 // java.lang.String str
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1   str  Ljava/lang/String;
            0    2     2   enc  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      str   
      enc   

  void <init>(java.lang.String, java.nio.charset.Charset);
    descriptor: (Ljava/lang/String;Ljava/nio/charset/Charset;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // java.lang.String str
        start local 2 // java.nio.charset.Charset cs
         0: .line 76
            aload 0 /* this */
            aload 1 /* str */
            aload 2 /* cs */
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            invokespecial io.vertx.core.buffer.impl.BufferImpl.<init>:([B)V
         1: .line 77
            return
        end local 2 // java.nio.charset.Charset cs
        end local 1 // java.lang.String str
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1   str  Ljava/lang/String;
            0    2     2    cs  Ljava/nio/charset/Charset;
    MethodParameters:
      Name  Flags
      str   
      cs    

  void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // java.lang.String str
         0: .line 80
            aload 0 /* this */
            aload 1 /* str */
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokespecial io.vertx.core.buffer.impl.BufferImpl.<init>:(Ljava/lang/String;Ljava/nio/charset/Charset;)V
         1: .line 81
            return
        end local 1 // java.lang.String str
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1   str  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      str   

  void <init>(io.netty.buffer.ByteBuf);
    descriptor: (Lio/netty/buffer/ByteBuf;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // io.netty.buffer.ByteBuf buffer
         0: .line 83
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 84
            aload 0 /* this */
            aload 1 /* buffer */
            putfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
         2: .line 85
            return
        end local 1 // io.netty.buffer.ByteBuf buffer
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1  buffer  Lio/netty/buffer/ByteBuf;
    MethodParameters:
        Name  Flags
      buffer  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
         0: .line 88
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual io.netty.buffer.ByteBuf.toString:(Ljava/nio/charset/Charset;)Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;

  public java.lang.String toString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // java.lang.String enc
         0: .line 92
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            aload 1 /* enc */
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            invokevirtual io.netty.buffer.ByteBuf.toString:(Ljava/nio/charset/Charset;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String enc
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   enc  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      enc   

  public java.lang.String toString(java.nio.charset.Charset);
    descriptor: (Ljava/nio/charset/Charset;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // java.nio.charset.Charset enc
         0: .line 96
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            aload 1 /* enc */
            invokevirtual io.netty.buffer.ByteBuf.toString:(Ljava/nio/charset/Charset;)Ljava/lang/String;
            areturn
        end local 1 // java.nio.charset.Charset enc
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   enc  Ljava/nio/charset/Charset;
    MethodParameters:
      Name  Flags
      enc   

  public io.vertx.core.json.JsonObject toJsonObject();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
         0: .line 102
            new io.vertx.core.json.JsonObject
            dup
            aload 0 /* this */
            invokespecial io.vertx.core.json.JsonObject.<init>:(Lio/vertx/core/buffer/Buffer;)V
            areturn
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;

  public io.vertx.core.json.JsonArray toJsonArray();
    descriptor: ()Lio/vertx/core/json/JsonArray;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
         0: .line 107
            new io.vertx.core.json.JsonArray
            dup
            aload 0 /* this */
            invokespecial io.vertx.core.json.JsonArray.<init>:(Lio/vertx/core/buffer/Buffer;)V
            areturn
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;

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

  public short getUnsignedByte(int);
    descriptor: (I)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
         0: .line 115
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedByte:(I)S
            ireturn
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   pos  I
    MethodParameters:
      Name  Flags
      pos   

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

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

  public long getUnsignedInt(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
         0: .line 127
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedInt:(I)J
            lreturn
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   pos  I
    MethodParameters:
      Name  Flags
      pos   

  public long getUnsignedIntLE(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
         0: .line 131
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedIntLE:(I)J
            lreturn
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   pos  I
    MethodParameters:
      Name  Flags
      pos   

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

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

  public double getDouble(int);
    descriptor: (I)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
         0: .line 143
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            invokevirtual io.netty.buffer.ByteBuf.getDouble:(I)D
            dreturn
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   pos  I
    MethodParameters:
      Name  Flags
      pos   

  public float getFloat(int);
    descriptor: (I)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
         0: .line 147
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            invokevirtual io.netty.buffer.ByteBuf.getFloat:(I)F
            freturn
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   pos  I
    MethodParameters:
      Name  Flags
      pos   

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

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

  public int getUnsignedShort(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
         0: .line 159
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedShort:(I)I
            ireturn
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   pos  I
    MethodParameters:
      Name  Flags
      pos   

  public int getUnsignedShortLE(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
         0: .line 163
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedShortLE:(I)I
            ireturn
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   pos  I
    MethodParameters:
      Name  Flags
      pos   

  public int getMedium(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
         0: .line 167
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            invokevirtual io.netty.buffer.ByteBuf.getMedium:(I)I
            ireturn
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   pos  I
    MethodParameters:
      Name  Flags
      pos   

  public int getMediumLE(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
         0: .line 171
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            invokevirtual io.netty.buffer.ByteBuf.getMediumLE:(I)I
            ireturn
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   pos  I
    MethodParameters:
      Name  Flags
      pos   

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

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

  public byte[] getBytes();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
         0: .line 183
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.writerIndex:()I
            newarray 8
            astore 1 /* arr */
        start local 1 // byte[] arr
         1: .line 184
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iconst_0
            aload 1 /* arr */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(I[B)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 185
            aload 1 /* arr */
            areturn
        end local 1 // byte[] arr
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            1    3     1   arr  [B

  public byte[] getBytes(int, int);
    descriptor: (II)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int start
        start local 2 // int end
         0: .line 189
            iload 2 /* end */
            iload 1 /* start */
            if_icmplt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "end must be greater or equal than start"
            invokestatic io.vertx.core.impl.Arguments.require:(ZLjava/lang/String;)V
         3: .line 190
            iload 2 /* end */
            iload 1 /* start */
            isub
            newarray 8
            astore 3 /* arr */
        start local 3 // byte[] arr
         4: .line 191
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* start */
            aload 3 /* arr */
            iconst_0
            iload 2 /* end */
            iload 1 /* start */
            isub
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(I[BII)Lio/netty/buffer/ByteBuf;
            pop
         5: .line 192
            aload 3 /* arr */
            areturn
        end local 3 // byte[] arr
        end local 2 // int end
        end local 1 // int start
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    6     1  start  I
            0    6     2    end  I
            4    6     3    arr  [B
    MethodParameters:
       Name  Flags
      start  
      end    

  public io.vertx.core.buffer.Buffer getBytes(byte[]);
    descriptor: ([B)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // byte[] dst
         0: .line 197
            aload 0 /* this */
            aload 1 /* dst */
            iconst_0
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.getBytes:([BI)Lio/vertx/core/buffer/Buffer;
            areturn
        end local 1 // byte[] dst
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   dst  [B
    MethodParameters:
      Name  Flags
      dst   

  public io.vertx.core.buffer.Buffer getBytes(byte[], int);
    descriptor: ([BI)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // byte[] dst
        start local 2 // int dstIndex
         0: .line 202
            aload 0 /* this */
            iconst_0
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.writerIndex:()I
            aload 1 /* dst */
            iload 2 /* dstIndex */
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.getBytes:(II[BI)Lio/vertx/core/buffer/Buffer;
            areturn
        end local 2 // int dstIndex
        end local 1 // byte[] dst
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1       dst  [B
            0    1     2  dstIndex  I
    MethodParameters:
          Name  Flags
      dst       
      dstIndex  

  public io.vertx.core.buffer.Buffer getBytes(int, int, byte[]);
    descriptor: (II[B)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int start
        start local 2 // int end
        start local 3 // byte[] dst
         0: .line 207
            aload 0 /* this */
            iload 1 /* start */
            iload 2 /* end */
            aload 3 /* dst */
            iconst_0
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.getBytes:(II[BI)Lio/vertx/core/buffer/Buffer;
            areturn
        end local 3 // byte[] dst
        end local 2 // int end
        end local 1 // int start
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1  start  I
            0    1     2    end  I
            0    1     3    dst  [B
    MethodParameters:
       Name  Flags
      start  
      end    
      dst    

  public io.vertx.core.buffer.Buffer getBytes(int, int, byte[], int);
    descriptor: (II[BI)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int start
        start local 2 // int end
        start local 3 // byte[] dst
        start local 4 // int dstIndex
         0: .line 212
            iload 2 /* end */
            iload 1 /* start */
            if_icmplt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "end must be greater or equal than start"
            invokestatic io.vertx.core.impl.Arguments.require:(ZLjava/lang/String;)V
         3: .line 213
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* start */
            aload 3 /* dst */
            iload 4 /* dstIndex */
            iload 2 /* end */
            iload 1 /* start */
            isub
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(I[BII)Lio/netty/buffer/ByteBuf;
            pop
         4: .line 214
            aload 0 /* this */
            areturn
        end local 4 // int dstIndex
        end local 3 // byte[] dst
        end local 2 // int end
        end local 1 // int start
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    5     1     start  I
            0    5     2       end  I
            0    5     3       dst  [B
            0    5     4  dstIndex  I
    MethodParameters:
          Name  Flags
      start     
      end       
      dst       
      dstIndex  

  public io.vertx.core.buffer.Buffer getBuffer(int, int);
    descriptor: (II)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int start
        start local 2 // int end
         0: .line 218
            new io.vertx.core.buffer.impl.BufferImpl
            dup
            aload 0 /* this */
            iload 1 /* start */
            iload 2 /* end */
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.getBytes:(II)[B
            invokespecial io.vertx.core.buffer.impl.BufferImpl.<init>:([B)V
            areturn
        end local 2 // int end
        end local 1 // int start
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1  start  I
            0    1     2    end  I
    MethodParameters:
       Name  Flags
      start  
      end    

  public java.lang.String getString(int, int, java.lang.String);
    descriptor: (IILjava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int start
        start local 2 // int end
        start local 3 // java.lang.String enc
         0: .line 222
            aload 0 /* this */
            iload 1 /* start */
            iload 2 /* end */
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.getBytes:(II)[B
            astore 4 /* bytes */
        start local 4 // byte[] bytes
         1: .line 223
            aload 3 /* enc */
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            astore 5 /* cs */
        start local 5 // java.nio.charset.Charset cs
         2: .line 224
            new java.lang.String
            dup
            aload 4 /* bytes */
            aload 5 /* cs */
            invokespecial java.lang.String.<init>:([BLjava/nio/charset/Charset;)V
            areturn
        end local 5 // java.nio.charset.Charset cs
        end local 4 // byte[] bytes
        end local 3 // java.lang.String enc
        end local 2 // int end
        end local 1 // int start
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1  start  I
            0    3     2    end  I
            0    3     3    enc  Ljava/lang/String;
            1    3     4  bytes  [B
            2    3     5     cs  Ljava/nio/charset/Charset;
    MethodParameters:
       Name  Flags
      start  
      end    
      enc    

  public java.lang.String getString(int, int);
    descriptor: (II)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int start
        start local 2 // int end
         0: .line 228
            aload 0 /* this */
            iload 1 /* start */
            iload 2 /* end */
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.getBytes:(II)[B
            astore 3 /* bytes */
        start local 3 // byte[] bytes
         1: .line 229
            new java.lang.String
            dup
            aload 3 /* bytes */
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokespecial java.lang.String.<init>:([BLjava/nio/charset/Charset;)V
            areturn
        end local 3 // byte[] bytes
        end local 2 // int end
        end local 1 // int start
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1  start  I
            0    2     2    end  I
            1    2     3  bytes  [B
    MethodParameters:
       Name  Flags
      start  
      end    

  public io.vertx.core.buffer.Buffer appendBuffer(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // io.vertx.core.buffer.Buffer buff
         0: .line 233
            aload 1 /* buff */
            checkcast io.vertx.core.buffer.impl.BufferImpl
            astore 2 /* impl */
        start local 2 // io.vertx.core.buffer.impl.BufferImpl impl
         1: .line 234
            aload 2 /* impl */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            astore 3 /* byteBuf */
        start local 3 // io.netty.buffer.ByteBuf byteBuf
         2: .line 235
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            aload 2 /* impl */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            aload 3 /* byteBuf */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            aload 2 /* impl */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            pop
         3: .line 236
            aload 0 /* this */
            areturn
        end local 3 // io.netty.buffer.ByteBuf byteBuf
        end local 2 // io.vertx.core.buffer.impl.BufferImpl impl
        end local 1 // io.vertx.core.buffer.Buffer buff
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    4     1     buff  Lio/vertx/core/buffer/Buffer;
            1    4     2     impl  Lio/vertx/core/buffer/impl/BufferImpl;
            2    4     3  byteBuf  Lio/netty/buffer/ByteBuf;
    MethodParameters:
      Name  Flags
      buff  

  public io.vertx.core.buffer.Buffer appendBuffer(io.vertx.core.buffer.Buffer, int, int);
    descriptor: (Lio/vertx/core/buffer/Buffer;II)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // io.vertx.core.buffer.Buffer buff
        start local 2 // int offset
        start local 3 // int len
         0: .line 240
            aload 1 /* buff */
            checkcast io.vertx.core.buffer.impl.BufferImpl
            astore 4 /* impl */
        start local 4 // io.vertx.core.buffer.impl.BufferImpl impl
         1: .line 241
            aload 4 /* impl */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            astore 5 /* byteBuf */
        start local 5 // io.netty.buffer.ByteBuf byteBuf
         2: .line 242
            aload 5 /* byteBuf */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            iload 2 /* offset */
            iadd
            istore 6 /* from */
        start local 6 // int from
         3: .line 243
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            aload 5 /* byteBuf */
            iload 6 /* from */
            iload 3 /* len */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            pop
         4: .line 244
            aload 0 /* this */
            areturn
        end local 6 // int from
        end local 5 // io.netty.buffer.ByteBuf byteBuf
        end local 4 // io.vertx.core.buffer.impl.BufferImpl impl
        end local 3 // int len
        end local 2 // int offset
        end local 1 // io.vertx.core.buffer.Buffer buff
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    5     1     buff  Lio/vertx/core/buffer/Buffer;
            0    5     2   offset  I
            0    5     3      len  I
            1    5     4     impl  Lio/vertx/core/buffer/impl/BufferImpl;
            2    5     5  byteBuf  Lio/netty/buffer/ByteBuf;
            3    5     6     from  I
    MethodParameters:
        Name  Flags
      buff    
      offset  
      len     

  public io.vertx.core.buffer.Buffer appendBytes(byte[]);
    descriptor: ([B)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // byte[] bytes
         0: .line 248
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            aload 1 /* bytes */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:([B)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 249
            aload 0 /* this */
            areturn
        end local 1 // byte[] bytes
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1  bytes  [B
    MethodParameters:
       Name  Flags
      bytes  

  public io.vertx.core.buffer.Buffer appendBytes(byte[], int, int);
    descriptor: ([BII)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // byte[] bytes
        start local 2 // int offset
        start local 3 // int len
         0: .line 253
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            aload 1 /* bytes */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:([BII)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 254
            aload 0 /* this */
            areturn
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] bytes
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1   bytes  [B
            0    2     2  offset  I
            0    2     3     len  I
    MethodParameters:
        Name  Flags
      bytes   
      offset  
      len     

  public io.vertx.core.buffer.Buffer appendByte(byte);
    descriptor: (B)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // byte b
         0: .line 258
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* b */
            invokevirtual io.netty.buffer.ByteBuf.writeByte:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 259
            aload 0 /* this */
            areturn
        end local 1 // byte b
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     b  B
    MethodParameters:
      Name  Flags
      b     

  public io.vertx.core.buffer.Buffer appendUnsignedByte(short);
    descriptor: (S)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // short b
         0: .line 263
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* b */
            invokevirtual io.netty.buffer.ByteBuf.writeByte:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 264
            aload 0 /* this */
            areturn
        end local 1 // short b
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     b  S
    MethodParameters:
      Name  Flags
      b     

  public io.vertx.core.buffer.Buffer appendInt(int);
    descriptor: (I)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int i
         0: .line 268
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* i */
            invokevirtual io.netty.buffer.ByteBuf.writeInt:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 269
            aload 0 /* this */
            areturn
        end local 1 // int i
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public io.vertx.core.buffer.Buffer appendIntLE(int);
    descriptor: (I)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int i
         0: .line 273
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* i */
            invokevirtual io.netty.buffer.ByteBuf.writeIntLE:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 274
            aload 0 /* this */
            areturn
        end local 1 // int i
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public io.vertx.core.buffer.Buffer appendUnsignedInt(long);
    descriptor: (J)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // long i
         0: .line 278
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            lload 1 /* i */
            l2i
            invokevirtual io.netty.buffer.ByteBuf.writeInt:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 279
            aload 0 /* this */
            areturn
        end local 1 // long i
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     i  J
    MethodParameters:
      Name  Flags
      i     

  public io.vertx.core.buffer.Buffer appendUnsignedIntLE(long);
    descriptor: (J)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // long i
         0: .line 283
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            lload 1 /* i */
            l2i
            invokevirtual io.netty.buffer.ByteBuf.writeIntLE:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 284
            aload 0 /* this */
            areturn
        end local 1 // long i
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     i  J
    MethodParameters:
      Name  Flags
      i     

  public io.vertx.core.buffer.Buffer appendMedium(int);
    descriptor: (I)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int i
         0: .line 288
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* i */
            invokevirtual io.netty.buffer.ByteBuf.writeMedium:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 289
            aload 0 /* this */
            areturn
        end local 1 // int i
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public io.vertx.core.buffer.Buffer appendMediumLE(int);
    descriptor: (I)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int i
         0: .line 293
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* i */
            invokevirtual io.netty.buffer.ByteBuf.writeMediumLE:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 294
            aload 0 /* this */
            areturn
        end local 1 // int i
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public io.vertx.core.buffer.Buffer appendLong(long);
    descriptor: (J)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // long l
         0: .line 298
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            lload 1 /* l */
            invokevirtual io.netty.buffer.ByteBuf.writeLong:(J)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 299
            aload 0 /* this */
            areturn
        end local 1 // long l
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     l  J
    MethodParameters:
      Name  Flags
      l     

  public io.vertx.core.buffer.Buffer appendLongLE(long);
    descriptor: (J)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // long l
         0: .line 303
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            lload 1 /* l */
            invokevirtual io.netty.buffer.ByteBuf.writeLongLE:(J)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 304
            aload 0 /* this */
            areturn
        end local 1 // long l
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     l  J
    MethodParameters:
      Name  Flags
      l     

  public io.vertx.core.buffer.Buffer appendShort(short);
    descriptor: (S)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // short s
         0: .line 308
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* s */
            invokevirtual io.netty.buffer.ByteBuf.writeShort:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 309
            aload 0 /* this */
            areturn
        end local 1 // short s
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     s  S
    MethodParameters:
      Name  Flags
      s     

  public io.vertx.core.buffer.Buffer appendShortLE(short);
    descriptor: (S)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // short s
         0: .line 313
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* s */
            invokevirtual io.netty.buffer.ByteBuf.writeShortLE:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 314
            aload 0 /* this */
            areturn
        end local 1 // short s
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     s  S
    MethodParameters:
      Name  Flags
      s     

  public io.vertx.core.buffer.Buffer appendUnsignedShort(int);
    descriptor: (I)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int s
         0: .line 318
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* s */
            invokevirtual io.netty.buffer.ByteBuf.writeShort:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 319
            aload 0 /* this */
            areturn
        end local 1 // int s
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     s  I
    MethodParameters:
      Name  Flags
      s     

  public io.vertx.core.buffer.Buffer appendUnsignedShortLE(int);
    descriptor: (I)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int s
         0: .line 323
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* s */
            invokevirtual io.netty.buffer.ByteBuf.writeShortLE:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 324
            aload 0 /* this */
            areturn
        end local 1 // int s
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     s  I
    MethodParameters:
      Name  Flags
      s     

  public io.vertx.core.buffer.Buffer appendFloat(float);
    descriptor: (F)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // float f
         0: .line 328
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            fload 1 /* f */
            invokevirtual io.netty.buffer.ByteBuf.writeFloat:(F)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 329
            aload 0 /* this */
            areturn
        end local 1 // float f
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     f  F
    MethodParameters:
      Name  Flags
      f     

  public io.vertx.core.buffer.Buffer appendDouble(double);
    descriptor: (D)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // double d
         0: .line 333
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            dload 1 /* d */
            invokevirtual io.netty.buffer.ByteBuf.writeDouble:(D)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 334
            aload 0 /* this */
            areturn
        end local 1 // double d
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    2     1     d  D
    MethodParameters:
      Name  Flags
      d     

  public io.vertx.core.buffer.Buffer appendString(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // java.lang.String str
        start local 2 // java.lang.String enc
         0: .line 338
            aload 0 /* this */
            aload 1 /* str */
            aload 2 /* enc */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.append:(Ljava/lang/String;Ljava/nio/charset/Charset;)Lio/vertx/core/buffer/Buffer;
            areturn
        end local 2 // java.lang.String enc
        end local 1 // java.lang.String str
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   str  Ljava/lang/String;
            0    1     2   enc  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      str   
      enc   

  public io.vertx.core.buffer.Buffer appendString(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // java.lang.String str
         0: .line 342
            aload 0 /* this */
            aload 1 /* str */
            getstatic io.netty.util.CharsetUtil.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.append:(Ljava/lang/String;Ljava/nio/charset/Charset;)Lio/vertx/core/buffer/Buffer;
            areturn
        end local 1 // java.lang.String str
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   str  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      str   

  public io.vertx.core.buffer.Buffer setByte(int, byte);
    descriptor: (IB)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // byte b
         0: .line 346
            aload 0 /* this */
            iload 1 /* pos */
            iconst_1
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 347
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            iload 2 /* b */
            invokevirtual io.netty.buffer.ByteBuf.setByte:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 348
            aload 0 /* this */
            areturn
        end local 2 // byte b
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     b  B
    MethodParameters:
      Name  Flags
      pos   
      b     

  public io.vertx.core.buffer.Buffer setUnsignedByte(int, short);
    descriptor: (IS)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // short b
         0: .line 352
            aload 0 /* this */
            iload 1 /* pos */
            iconst_1
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 353
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            iload 2 /* b */
            invokevirtual io.netty.buffer.ByteBuf.setByte:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 354
            aload 0 /* this */
            areturn
        end local 2 // short b
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     b  S
    MethodParameters:
      Name  Flags
      pos   
      b     

  public io.vertx.core.buffer.Buffer setInt(int, int);
    descriptor: (II)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // int i
         0: .line 358
            aload 0 /* this */
            iload 1 /* pos */
            iconst_4
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 359
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            iload 2 /* i */
            invokevirtual io.netty.buffer.ByteBuf.setInt:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 360
            aload 0 /* this */
            areturn
        end local 2 // int i
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     i  I
    MethodParameters:
      Name  Flags
      pos   
      i     

  public io.vertx.core.buffer.Buffer setIntLE(int, int);
    descriptor: (II)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // int i
         0: .line 364
            aload 0 /* this */
            iload 1 /* pos */
            iconst_4
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 365
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            iload 2 /* i */
            invokevirtual io.netty.buffer.ByteBuf.setIntLE:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 366
            aload 0 /* this */
            areturn
        end local 2 // int i
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     i  I
    MethodParameters:
      Name  Flags
      pos   
      i     

  public io.vertx.core.buffer.Buffer setUnsignedInt(int, long);
    descriptor: (IJ)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // long i
         0: .line 370
            aload 0 /* this */
            iload 1 /* pos */
            iconst_4
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 371
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            lload 2 /* i */
            l2i
            invokevirtual io.netty.buffer.ByteBuf.setInt:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 372
            aload 0 /* this */
            areturn
        end local 2 // long i
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     i  J
    MethodParameters:
      Name  Flags
      pos   
      i     

  public io.vertx.core.buffer.Buffer setUnsignedIntLE(int, long);
    descriptor: (IJ)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // long i
         0: .line 376
            aload 0 /* this */
            iload 1 /* pos */
            iconst_4
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 377
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            lload 2 /* i */
            l2i
            invokevirtual io.netty.buffer.ByteBuf.setIntLE:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 378
            aload 0 /* this */
            areturn
        end local 2 // long i
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     i  J
    MethodParameters:
      Name  Flags
      pos   
      i     

  public io.vertx.core.buffer.Buffer setMedium(int, int);
    descriptor: (II)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // int i
         0: .line 382
            aload 0 /* this */
            iload 1 /* pos */
            iconst_3
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 383
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            iload 2 /* i */
            invokevirtual io.netty.buffer.ByteBuf.setMedium:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 384
            aload 0 /* this */
            areturn
        end local 2 // int i
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     i  I
    MethodParameters:
      Name  Flags
      pos   
      i     

  public io.vertx.core.buffer.Buffer setMediumLE(int, int);
    descriptor: (II)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // int i
         0: .line 388
            aload 0 /* this */
            iload 1 /* pos */
            iconst_3
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 389
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            iload 2 /* i */
            invokevirtual io.netty.buffer.ByteBuf.setMediumLE:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 390
            aload 0 /* this */
            areturn
        end local 2 // int i
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     i  I
    MethodParameters:
      Name  Flags
      pos   
      i     

  public io.vertx.core.buffer.Buffer setLong(int, long);
    descriptor: (IJ)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // long l
         0: .line 394
            aload 0 /* this */
            iload 1 /* pos */
            bipush 8
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 395
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            lload 2 /* l */
            invokevirtual io.netty.buffer.ByteBuf.setLong:(IJ)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 396
            aload 0 /* this */
            areturn
        end local 2 // long l
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     l  J
    MethodParameters:
      Name  Flags
      pos   
      l     

  public io.vertx.core.buffer.Buffer setLongLE(int, long);
    descriptor: (IJ)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // long l
         0: .line 400
            aload 0 /* this */
            iload 1 /* pos */
            bipush 8
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 401
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            lload 2 /* l */
            invokevirtual io.netty.buffer.ByteBuf.setLongLE:(IJ)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 402
            aload 0 /* this */
            areturn
        end local 2 // long l
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     l  J
    MethodParameters:
      Name  Flags
      pos   
      l     

  public io.vertx.core.buffer.Buffer setDouble(int, double);
    descriptor: (ID)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // double d
         0: .line 406
            aload 0 /* this */
            iload 1 /* pos */
            bipush 8
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 407
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            dload 2 /* d */
            invokevirtual io.netty.buffer.ByteBuf.setDouble:(ID)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 408
            aload 0 /* this */
            areturn
        end local 2 // double d
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     d  D
    MethodParameters:
      Name  Flags
      pos   
      d     

  public io.vertx.core.buffer.Buffer setFloat(int, float);
    descriptor: (IF)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // float f
         0: .line 412
            aload 0 /* this */
            iload 1 /* pos */
            iconst_4
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 413
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            fload 2 /* f */
            invokevirtual io.netty.buffer.ByteBuf.setFloat:(IF)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 414
            aload 0 /* this */
            areturn
        end local 2 // float f
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     f  F
    MethodParameters:
      Name  Flags
      pos   
      f     

  public io.vertx.core.buffer.Buffer setShort(int, short);
    descriptor: (IS)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // short s
         0: .line 418
            aload 0 /* this */
            iload 1 /* pos */
            iconst_2
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 419
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            iload 2 /* s */
            invokevirtual io.netty.buffer.ByteBuf.setShort:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 420
            aload 0 /* this */
            areturn
        end local 2 // short s
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     s  S
    MethodParameters:
      Name  Flags
      pos   
      s     

  public io.vertx.core.buffer.Buffer setShortLE(int, short);
    descriptor: (IS)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // short s
         0: .line 424
            aload 0 /* this */
            iload 1 /* pos */
            iconst_2
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 425
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            iload 2 /* s */
            invokevirtual io.netty.buffer.ByteBuf.setShortLE:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 426
            aload 0 /* this */
            areturn
        end local 2 // short s
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     s  S
    MethodParameters:
      Name  Flags
      pos   
      s     

  public io.vertx.core.buffer.Buffer setUnsignedShort(int, int);
    descriptor: (II)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // int s
         0: .line 430
            aload 0 /* this */
            iload 1 /* pos */
            iconst_2
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 431
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            iload 2 /* s */
            invokevirtual io.netty.buffer.ByteBuf.setShort:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 432
            aload 0 /* this */
            areturn
        end local 2 // int s
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     s  I
    MethodParameters:
      Name  Flags
      pos   
      s     

  public io.vertx.core.buffer.Buffer setUnsignedShortLE(int, int);
    descriptor: (II)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // int s
         0: .line 436
            aload 0 /* this */
            iload 1 /* pos */
            iconst_2
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 437
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            iload 2 /* s */
            invokevirtual io.netty.buffer.ByteBuf.setShortLE:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 438
            aload 0 /* this */
            areturn
        end local 2 // int s
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     s  I
    MethodParameters:
      Name  Flags
      pos   
      s     

  public io.vertx.core.buffer.Buffer setBuffer(int, io.vertx.core.buffer.Buffer);
    descriptor: (ILio/vertx/core/buffer/Buffer;)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // io.vertx.core.buffer.Buffer buff
         0: .line 442
            aload 0 /* this */
            iload 1 /* pos */
            aload 2 /* buff */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 443
            aload 2 /* buff */
            checkcast io.vertx.core.buffer.impl.BufferImpl
            astore 3 /* impl */
        start local 3 // io.vertx.core.buffer.impl.BufferImpl impl
         2: .line 444
            aload 3 /* impl */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            astore 4 /* byteBuf */
        start local 4 // io.netty.buffer.ByteBuf byteBuf
         3: .line 445
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            aload 4 /* byteBuf */
            aload 4 /* byteBuf */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            aload 4 /* byteBuf */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            pop
         4: .line 446
            aload 0 /* this */
            areturn
        end local 4 // io.netty.buffer.ByteBuf byteBuf
        end local 3 // io.vertx.core.buffer.impl.BufferImpl impl
        end local 2 // io.vertx.core.buffer.Buffer buff
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    5     1      pos  I
            0    5     2     buff  Lio/vertx/core/buffer/Buffer;
            2    5     3     impl  Lio/vertx/core/buffer/impl/BufferImpl;
            3    5     4  byteBuf  Lio/netty/buffer/ByteBuf;
    MethodParameters:
      Name  Flags
      pos   
      buff  

  public io.vertx.core.buffer.Buffer setBuffer(int, io.vertx.core.buffer.Buffer, int, int);
    descriptor: (ILio/vertx/core/buffer/Buffer;II)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=5
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // io.vertx.core.buffer.Buffer buffer
        start local 3 // int offset
        start local 4 // int len
         0: .line 450
            aload 0 /* this */
            iload 1 /* pos */
            iload 4 /* len */
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 451
            aload 2 /* buffer */
            checkcast io.vertx.core.buffer.impl.BufferImpl
            astore 5 /* impl */
        start local 5 // io.vertx.core.buffer.impl.BufferImpl impl
         2: .line 452
            aload 5 /* impl */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            astore 6 /* byteBuf */
        start local 6 // io.netty.buffer.ByteBuf byteBuf
         3: .line 453
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            aload 6 /* byteBuf */
            aload 6 /* byteBuf */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            iload 3 /* offset */
            iadd
            iload 4 /* len */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            pop
         4: .line 454
            aload 0 /* this */
            areturn
        end local 6 // io.netty.buffer.ByteBuf byteBuf
        end local 5 // io.vertx.core.buffer.impl.BufferImpl impl
        end local 4 // int len
        end local 3 // int offset
        end local 2 // io.vertx.core.buffer.Buffer buffer
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    5     1      pos  I
            0    5     2   buffer  Lio/vertx/core/buffer/Buffer;
            0    5     3   offset  I
            0    5     4      len  I
            2    5     5     impl  Lio/vertx/core/buffer/impl/BufferImpl;
            3    5     6  byteBuf  Lio/netty/buffer/ByteBuf;
    MethodParameters:
        Name  Flags
      pos     
      buffer  
      offset  
      len     

  public io.vertx.core.buffer.impl.BufferImpl setBytes(int, java.nio.ByteBuffer);
    descriptor: (ILjava/nio/ByteBuffer;)Lio/vertx/core/buffer/impl/BufferImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // java.nio.ByteBuffer b
         0: .line 458
            aload 0 /* this */
            iload 1 /* pos */
            aload 2 /* b */
            invokevirtual java.nio.ByteBuffer.limit:()I
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 459
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            aload 2 /* b */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 460
            aload 0 /* this */
            areturn
        end local 2 // java.nio.ByteBuffer b
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     b  Ljava/nio/ByteBuffer;
    MethodParameters:
      Name  Flags
      pos   
      b     

  public io.vertx.core.buffer.Buffer setBytes(int, byte[]);
    descriptor: (I[B)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // byte[] b
         0: .line 464
            aload 0 /* this */
            iload 1 /* pos */
            aload 2 /* b */
            arraylength
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 465
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            aload 2 /* b */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(I[B)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 466
            aload 0 /* this */
            areturn
        end local 2 // byte[] b
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1   pos  I
            0    3     2     b  [B
    MethodParameters:
      Name  Flags
      pos   
      b     

  public io.vertx.core.buffer.Buffer setBytes(int, byte[], int, int);
    descriptor: (I[BII)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // byte[] b
        start local 3 // int offset
        start local 4 // int len
         0: .line 470
            aload 0 /* this */
            iload 1 /* pos */
            iload 4 /* len */
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         1: .line 471
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            aload 2 /* b */
            iload 3 /* offset */
            iload 4 /* len */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(I[BII)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 472
            aload 0 /* this */
            areturn
        end local 4 // int len
        end local 3 // int offset
        end local 2 // byte[] b
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1     pos  I
            0    3     2       b  [B
            0    3     3  offset  I
            0    3     4     len  I
    MethodParameters:
        Name  Flags
      pos     
      b       
      offset  
      len     

  public io.vertx.core.buffer.Buffer setString(int, java.lang.String);
    descriptor: (ILjava/lang/String;)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // java.lang.String str
         0: .line 476
            aload 0 /* this */
            iload 1 /* pos */
            aload 2 /* str */
            getstatic io.netty.util.CharsetUtil.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.setBytes:(ILjava/lang/String;Ljava/nio/charset/Charset;)Lio/vertx/core/buffer/Buffer;
            areturn
        end local 2 // java.lang.String str
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   pos  I
            0    1     2   str  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      pos   
      str   

  public io.vertx.core.buffer.Buffer setString(int, java.lang.String, java.lang.String);
    descriptor: (ILjava/lang/String;Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // java.lang.String str
        start local 3 // java.lang.String enc
         0: .line 480
            aload 0 /* this */
            iload 1 /* pos */
            aload 2 /* str */
            aload 3 /* enc */
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.setBytes:(ILjava/lang/String;Ljava/nio/charset/Charset;)Lio/vertx/core/buffer/Buffer;
            areturn
        end local 3 // java.lang.String enc
        end local 2 // java.lang.String str
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1   pos  I
            0    1     2   str  Ljava/lang/String;
            0    1     3   enc  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      pos   
      str   
      enc   

  public int length();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
         0: .line 484
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.writerIndex:()I
            ireturn
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;

  public io.vertx.core.buffer.Buffer copy();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
         0: .line 488
            new io.vertx.core.buffer.impl.BufferImpl
            dup
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.copy:()Lio/netty/buffer/ByteBuf;
            invokespecial io.vertx.core.buffer.impl.BufferImpl.<init>:(Lio/netty/buffer/ByteBuf;)V
            areturn
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;

  public io.vertx.core.buffer.Buffer slice();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
         0: .line 492
            new io.vertx.core.buffer.impl.BufferImpl
            dup
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.slice:()Lio/netty/buffer/ByteBuf;
            invokespecial io.vertx.core.buffer.impl.BufferImpl.<init>:(Lio/netty/buffer/ByteBuf;)V
            areturn
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/buffer/impl/BufferImpl;

  public io.vertx.core.buffer.Buffer slice(int, int);
    descriptor: (II)Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int start
        start local 2 // int end
         0: .line 496
            new io.vertx.core.buffer.impl.BufferImpl
            dup
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* start */
            iload 2 /* end */
            iload 1 /* start */
            isub
            invokevirtual io.netty.buffer.ByteBuf.slice:(II)Lio/netty/buffer/ByteBuf;
            invokespecial io.vertx.core.buffer.impl.BufferImpl.<init>:(Lio/netty/buffer/ByteBuf;)V
            areturn
        end local 2 // int end
        end local 1 // int start
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    1     1  start  I
            0    1     2    end  I
    MethodParameters:
       Name  Flags
      start  
      end    

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

  public io.netty.buffer.ByteBuf getByteBuf();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
         0: .line 507
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.duplicate:()Lio/netty/buffer/ByteBuf;
            astore 1 /* duplicate */
        start local 1 // io.netty.buffer.ByteBuf duplicate
         1: .line 508
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            ldc Lio/vertx/core/buffer/impl/VertxHeapByteBuf;
            if_acmpeq 3
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            ldc Lio/vertx/core/buffer/impl/VertxUnsafeHeapByteBuf;
            if_acmpeq 3
         2: .line 509
            aload 1 /* duplicate */
            invokestatic io.netty.buffer.Unpooled.unreleasableBuffer:(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
            astore 1 /* duplicate */
         3: .line 511
      StackMap locals: io.netty.buffer.ByteBuf
      StackMap stack:
            aload 1 /* duplicate */
            areturn
        end local 1 // io.netty.buffer.ByteBuf duplicate
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lio/vertx/core/buffer/impl/BufferImpl;
            1    4     1  duplicate  Lio/netty/buffer/ByteBuf;

  private io.vertx.core.buffer.Buffer append(java.lang.String, java.nio.charset.Charset);
    descriptor: (Ljava/lang/String;Ljava/nio/charset/Charset;)Lio/vertx/core/buffer/Buffer;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // java.lang.String str
        start local 2 // java.nio.charset.Charset charset
         0: .line 515
            aload 1 /* str */
            aload 2 /* charset */
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            astore 3 /* bytes */
        start local 3 // byte[] bytes
         1: .line 516
            aload 0 /* this */
            aload 3 /* bytes */
            arraylength
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureExpandableBy:(I)V
         2: .line 517
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            aload 3 /* bytes */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:([B)Lio/netty/buffer/ByteBuf;
            pop
         3: .line 518
            aload 0 /* this */
            areturn
        end local 3 // byte[] bytes
        end local 2 // java.nio.charset.Charset charset
        end local 1 // java.lang.String str
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    4     1      str  Ljava/lang/String;
            0    4     2  charset  Ljava/nio/charset/Charset;
            1    4     3    bytes  [B
    MethodParameters:
         Name  Flags
      str      
      charset  

  private io.vertx.core.buffer.Buffer setBytes(int, java.lang.String, java.nio.charset.Charset);
    descriptor: (ILjava/lang/String;Ljava/nio/charset/Charset;)Lio/vertx/core/buffer/Buffer;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // java.lang.String str
        start local 3 // java.nio.charset.Charset charset
         0: .line 522
            aload 2 /* str */
            aload 3 /* charset */
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            astore 4 /* bytes */
        start local 4 // byte[] bytes
         1: .line 523
            aload 0 /* this */
            iload 1 /* pos */
            aload 4 /* bytes */
            arraylength
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.ensureLength:(I)V
         2: .line 524
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* pos */
            aload 4 /* bytes */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(I[B)Lio/netty/buffer/ByteBuf;
            pop
         3: .line 525
            aload 0 /* this */
            areturn
        end local 4 // byte[] bytes
        end local 3 // java.nio.charset.Charset charset
        end local 2 // java.lang.String str
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    4     1      pos  I
            0    4     2      str  Ljava/lang/String;
            0    4     3  charset  Ljava/nio/charset/Charset;
            1    4     4    bytes  [B
    MethodParameters:
         Name  Flags
      pos      
      str      
      charset  

  private void ensureLength(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int newLength
         0: .line 532
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.capacity:()I
            istore 2 /* capacity */
        start local 2 // int capacity
         1: .line 533
            iload 1 /* newLength */
            iload 2 /* capacity */
            isub
            istore 3 /* over */
        start local 3 // int over
         2: .line 534
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.writerIndex:()I
            istore 4 /* writerIndex */
        start local 4 // int writerIndex
         3: .line 536
            iload 3 /* over */
            ifle 8
         4: .line 538
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.maxCapacity:()I
            istore 5 /* maxCapacity */
        start local 5 // int maxCapacity
         5: .line 539
            iload 2 /* capacity */
            iload 3 /* over */
            iadd
            iload 5 /* maxCapacity */
            if_icmple 7
         6: .line 540
            aload 0 /* this */
            iload 2 /* capacity */
            iload 3 /* over */
            iadd
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.setFullMaxCapacity:(I)V
         7: .line 543
      StackMap locals: io.vertx.core.buffer.impl.BufferImpl int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* newLength */
            iload 4 /* writerIndex */
            isub
            invokevirtual io.netty.buffer.ByteBuf.ensureWritable:(I)Lio/netty/buffer/ByteBuf;
            pop
        end local 5 // int maxCapacity
         8: .line 546
      StackMap locals:
      StackMap stack:
            iload 1 /* newLength */
            iload 4 /* writerIndex */
            if_icmple 10
         9: .line 547
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* newLength */
            invokevirtual io.netty.buffer.ByteBuf.writerIndex:(I)Lio/netty/buffer/ByteBuf;
            pop
        10: .line 549
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int writerIndex
        end local 3 // int over
        end local 2 // int capacity
        end local 1 // int newLength
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   11     0         this  Lio/vertx/core/buffer/impl/BufferImpl;
            0   11     1    newLength  I
            1   11     2     capacity  I
            2   11     3         over  I
            3   11     4  writerIndex  I
            5    8     5  maxCapacity  I
    MethodParameters:
           Name  Flags
      newLength  

  private void ensureExpandableBy(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int amount
         0: .line 555
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.writerIndex:()I
            iload 1 /* amount */
            iadd
            istore 2 /* minMaxCapa */
        start local 2 // int minMaxCapa
         1: .line 556
            iload 2 /* minMaxCapa */
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.maxCapacity:()I
            if_icmple 3
         2: .line 557
            aload 0 /* this */
            iload 2 /* minMaxCapa */
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.setFullMaxCapacity:(I)V
         3: .line 559
      StackMap locals: int
      StackMap stack:
            return
        end local 2 // int minMaxCapa
        end local 1 // int amount
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    4     1      amount  I
            1    4     2  minMaxCapa  I
    MethodParameters:
        Name  Flags
      amount  

  private void setFullMaxCapacity(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int capacity
         0: .line 562
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.alloc:()Lio/netty/buffer/ByteBufAllocator;
            iload 1 /* capacity */
            ldc 2147483647
            invokeinterface io.netty.buffer.ByteBufAllocator.heapBuffer:(II)Lio/netty/buffer/ByteBuf;
            astore 2 /* tmp */
        start local 2 // io.netty.buffer.ByteBuf tmp
         1: .line 563
            aload 2 /* tmp */
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:(Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 564
            aload 0 /* this */
            aload 2 /* tmp */
            putfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
         3: .line 565
            return
        end local 2 // io.netty.buffer.ByteBuf tmp
        end local 1 // int capacity
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    4     1  capacity  I
            1    4     2       tmp  Lio/netty/buffer/ByteBuf;
    MethodParameters:
          Name  Flags
      capacity  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // java.lang.Object o
         0: .line 569
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 570
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            ifnull 2
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* o */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 571
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.vertx.core.buffer.impl.BufferImpl
            astore 2 /* buffer1 */
        start local 2 // io.vertx.core.buffer.impl.BufferImpl buffer1
         4: .line 572
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            aload 2 /* buffer1 */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ireturn
        end local 2 // io.vertx.core.buffer.impl.BufferImpl buffer1
        end local 1 // java.lang.Object o
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    5     1        o  Ljava/lang/Object;
            4    5     2  buffer1  Lio/vertx/core/buffer/impl/BufferImpl;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
         0: .line 577
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            ifnull 1
            aload 0 /* this */
            getfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.hashCode:()I
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;

  public void writeToBuffer(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // io.vertx.core.buffer.Buffer buff
         0: .line 582
            aload 1 /* buff */
            aload 0 /* this */
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.length:()I
            invokeinterface io.vertx.core.buffer.Buffer.appendInt:(I)Lio/vertx/core/buffer/Buffer;
            pop
         1: .line 583
            aload 1 /* buff */
            aload 0 /* this */
            invokeinterface io.vertx.core.buffer.Buffer.appendBuffer:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/buffer/Buffer;
            pop
         2: .line 584
            return
        end local 1 // io.vertx.core.buffer.Buffer buff
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    3     1  buff  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
      Name  Flags
      buff  

  public int readFromBuffer(int, io.vertx.core.buffer.Buffer);
    descriptor: (ILio/vertx/core/buffer/Buffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // io.vertx.core.buffer.impl.BufferImpl this
        start local 1 // int pos
        start local 2 // io.vertx.core.buffer.Buffer buffer
         0: .line 588
            aload 2 /* buffer */
            iload 1 /* pos */
            invokeinterface io.vertx.core.buffer.Buffer.getInt:(I)I
            istore 3 /* len */
        start local 3 // int len
         1: .line 589
            aload 2 /* buffer */
            iload 1 /* pos */
            iconst_4
            iadd
            iload 1 /* pos */
            iconst_4
            iadd
            iload 3 /* len */
            iadd
            invokeinterface io.vertx.core.buffer.Buffer.getBuffer:(II)Lio/vertx/core/buffer/Buffer;
            checkcast io.vertx.core.buffer.impl.BufferImpl
            astore 4 /* impl */
        start local 4 // io.vertx.core.buffer.impl.BufferImpl impl
         2: .line 590
            aload 0 /* this */
            aload 4 /* impl */
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.getByteBuf:()Lio/netty/buffer/ByteBuf;
            putfield io.vertx.core.buffer.impl.BufferImpl.buffer:Lio/netty/buffer/ByteBuf;
         3: .line 591
            iload 1 /* pos */
            iconst_4
            iadd
            iload 3 /* len */
            iadd
            ireturn
        end local 4 // io.vertx.core.buffer.impl.BufferImpl impl
        end local 3 // int len
        end local 2 // io.vertx.core.buffer.Buffer buffer
        end local 1 // int pos
        end local 0 // io.vertx.core.buffer.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/vertx/core/buffer/impl/BufferImpl;
            0    4     1     pos  I
            0    4     2  buffer  Lio/vertx/core/buffer/Buffer;
            1    4     3     len  I
            2    4     4    impl  Lio/vertx/core/buffer/impl/BufferImpl;
    MethodParameters:
        Name  Flags
      pos     
      buffer  

  public io.vertx.core.shareddata.Shareable copy();
    descriptor: ()Lio/vertx/core/shareddata/Shareable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.copy:()Lio/vertx/core/buffer/Buffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.buffer.Buffer setBytes(int, java.nio.ByteBuffer);
    descriptor: (ILjava/nio/ByteBuffer;)Lio/vertx/core/buffer/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            invokevirtual io.vertx.core.buffer.impl.BufferImpl.setBytes:(ILjava/nio/ByteBuffer;)Lio/vertx/core/buffer/impl/BufferImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "BufferImpl.java"