public class io.vertx.ext.web.client.impl.HttpResponseImpl<T> implements io.vertx.ext.web.client.HttpResponse<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.web.client.impl.HttpResponseImpl
  super_class: java.lang.Object
{
  private final io.vertx.core.http.HttpVersion version;
    descriptor: Lio/vertx/core/http/HttpVersion;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int statusCode;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String statusMessage;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.MultiMap headers;
    descriptor: Lio/vertx/core/MultiMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.MultiMap trailers;
    descriptor: Lio/vertx/core/MultiMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.List<java.lang.String> cookies;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Ljava/lang/String;>;

  private final T body;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TT;

  private final java.util.List<java.lang.String> redirects;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Ljava/lang/String;>;

  public void <init>(io.vertx.core.http.HttpVersion, int, java.lang.String, io.vertx.core.MultiMap, io.vertx.core.MultiMap, java.util.List<java.lang.String>, T, java.util.List<java.lang.String>);
    descriptor: (Lio/vertx/core/http/HttpVersion;ILjava/lang/String;Lio/vertx/core/MultiMap;Lio/vertx/core/MultiMap;Ljava/util/List;Ljava/lang/Object;Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=9, args_size=9
        start local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
        start local 1 // io.vertx.core.http.HttpVersion version
        start local 2 // int statusCode
        start local 3 // java.lang.String statusMessage
        start local 4 // io.vertx.core.MultiMap headers
        start local 5 // io.vertx.core.MultiMap trailers
        start local 6 // java.util.List cookies
        start local 7 // java.lang.Object body
        start local 8 // java.util.List redirects
         0: .line 41
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 48
            aload 0 /* this */
            aload 1 /* version */
            putfield io.vertx.ext.web.client.impl.HttpResponseImpl.version:Lio/vertx/core/http/HttpVersion;
         2: .line 49
            aload 0 /* this */
            iload 2 /* statusCode */
            putfield io.vertx.ext.web.client.impl.HttpResponseImpl.statusCode:I
         3: .line 50
            aload 0 /* this */
            aload 3 /* statusMessage */
            putfield io.vertx.ext.web.client.impl.HttpResponseImpl.statusMessage:Ljava/lang/String;
         4: .line 51
            aload 0 /* this */
            aload 4 /* headers */
            putfield io.vertx.ext.web.client.impl.HttpResponseImpl.headers:Lio/vertx/core/MultiMap;
         5: .line 52
            aload 0 /* this */
            aload 5 /* trailers */
            putfield io.vertx.ext.web.client.impl.HttpResponseImpl.trailers:Lio/vertx/core/MultiMap;
         6: .line 53
            aload 0 /* this */
            aload 6 /* cookies */
            putfield io.vertx.ext.web.client.impl.HttpResponseImpl.cookies:Ljava/util/List;
         7: .line 54
            aload 0 /* this */
            aload 7 /* body */
            putfield io.vertx.ext.web.client.impl.HttpResponseImpl.body:Ljava/lang/Object;
         8: .line 55
            aload 0 /* this */
            aload 8 /* redirects */
            putfield io.vertx.ext.web.client.impl.HttpResponseImpl.redirects:Ljava/util/List;
         9: .line 56
            return
        end local 8 // java.util.List redirects
        end local 7 // java.lang.Object body
        end local 6 // java.util.List cookies
        end local 5 // io.vertx.core.MultiMap trailers
        end local 4 // io.vertx.core.MultiMap headers
        end local 3 // java.lang.String statusMessage
        end local 2 // int statusCode
        end local 1 // io.vertx.core.http.HttpVersion version
        end local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   10     0           this  Lio/vertx/ext/web/client/impl/HttpResponseImpl<TT;>;
            0   10     1        version  Lio/vertx/core/http/HttpVersion;
            0   10     2     statusCode  I
            0   10     3  statusMessage  Ljava/lang/String;
            0   10     4        headers  Lio/vertx/core/MultiMap;
            0   10     5       trailers  Lio/vertx/core/MultiMap;
            0   10     6        cookies  Ljava/util/List<Ljava/lang/String;>;
            0   10     7           body  TT;
            0   10     8      redirects  Ljava/util/List<Ljava/lang/String;>;
    Signature: (Lio/vertx/core/http/HttpVersion;ILjava/lang/String;Lio/vertx/core/MultiMap;Lio/vertx/core/MultiMap;Ljava/util/List<Ljava/lang/String;>;TT;Ljava/util/List<Ljava/lang/String;>;)V
    MethodParameters:
               Name  Flags
      version        
      statusCode     
      statusMessage  
      headers        
      trailers       
      cookies        
      body           
      redirects      

  public io.vertx.core.http.HttpVersion version();
    descriptor: ()Lio/vertx/core/http/HttpVersion;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
         0: .line 60
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpResponseImpl.version:Lio/vertx/core/http/HttpVersion;
            areturn
        end local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/client/impl/HttpResponseImpl<TT;>;

  public int statusCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
         0: .line 65
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpResponseImpl.statusCode:I
            ireturn
        end local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/client/impl/HttpResponseImpl<TT;>;

  public java.lang.String statusMessage();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
         0: .line 70
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpResponseImpl.statusMessage:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/client/impl/HttpResponseImpl<TT;>;

  public java.lang.String getHeader(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.ext.web.client.impl.HttpResponseImpl this
        start local 1 // java.lang.String headerName
         0: .line 75
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpResponseImpl.headers:Lio/vertx/core/MultiMap;
            aload 1 /* headerName */
            invokeinterface io.vertx.core.MultiMap.get:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String headerName
        end local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/vertx/ext/web/client/impl/HttpResponseImpl<TT;>;
            0    1     1  headerName  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      headerName  

  public io.vertx.core.MultiMap trailers();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
         0: .line 80
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpResponseImpl.trailers:Lio/vertx/core/MultiMap;
            areturn
        end local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/client/impl/HttpResponseImpl<TT;>;

  public java.lang.String getTrailer(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.ext.web.client.impl.HttpResponseImpl this
        start local 1 // java.lang.String trailerName
         0: .line 85
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpResponseImpl.trailers:Lio/vertx/core/MultiMap;
            aload 1 /* trailerName */
            invokeinterface io.vertx.core.MultiMap.get:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 1 // java.lang.String trailerName
        end local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lio/vertx/ext/web/client/impl/HttpResponseImpl<TT;>;
            0    1     1  trailerName  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      trailerName  

  public java.util.List<java.lang.String> cookies();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
         0: .line 90
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpResponseImpl.cookies:Ljava/util/List;
            areturn
        end local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/client/impl/HttpResponseImpl<TT;>;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  public io.vertx.core.MultiMap headers();
    descriptor: ()Lio/vertx/core/MultiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
         0: .line 95
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpResponseImpl.headers:Lio/vertx/core/MultiMap;
            areturn
        end local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/client/impl/HttpResponseImpl<TT;>;

  public T body();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
         0: .line 100
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpResponseImpl.body:Ljava/lang/Object;
            areturn
        end local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/client/impl/HttpResponseImpl<TT;>;
    Signature: ()TT;

  public io.vertx.core.buffer.Buffer bodyAsBuffer();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
         0: .line 105
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpResponseImpl.body:Ljava/lang/Object;
            instanceof io.vertx.core.buffer.Buffer
            ifeq 1
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpResponseImpl.body:Ljava/lang/Object;
            checkcast io.vertx.core.buffer.Buffer
            goto 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
      StackMap locals:
      StackMap stack: io.vertx.core.buffer.Buffer
         2: areturn
        end local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/web/client/impl/HttpResponseImpl<TT;>;

  public java.util.List<java.lang.String> followedRedirects();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
         0: .line 110
            aload 0 /* this */
            getfield io.vertx.ext.web.client.impl.HttpResponseImpl.redirects:Ljava/util/List;
            areturn
        end local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/client/impl/HttpResponseImpl<TT;>;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  public io.vertx.core.json.JsonArray bodyAsJsonArray();
    descriptor: ()Lio/vertx/core/json/JsonArray;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
         0: .line 115
            aload 0 /* this */
            invokevirtual io.vertx.ext.web.client.impl.HttpResponseImpl.bodyAsBuffer:()Lio/vertx/core/buffer/Buffer;
            astore 1 /* b */
        start local 1 // io.vertx.core.buffer.Buffer b
         1: .line 116
            aload 1 /* b */
            ifnull 2
            getstatic io.vertx.ext.web.codec.impl.BodyCodecImpl.JSON_ARRAY_DECODER:Ljava/util/function/Function;
            aload 1 /* b */
            invokeinterface java.util.function.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.core.json.JsonArray
            goto 3
      StackMap locals: io.vertx.core.buffer.Buffer
      StackMap stack:
         2: aconst_null
      StackMap locals:
      StackMap stack: io.vertx.core.json.JsonArray
         3: areturn
        end local 1 // io.vertx.core.buffer.Buffer b
        end local 0 // io.vertx.ext.web.client.impl.HttpResponseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/web/client/impl/HttpResponseImpl<TT;>;
            1    4     1     b  Lio/vertx/core/buffer/Buffer;
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lio/vertx/ext/web/client/HttpResponse<TT;>;
SourceFile: "HttpResponseImpl.java"