public class io.vertx.ext.web.api.impl.RequestParametersImpl implements io.vertx.ext.web.api.RequestParameters
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.web.api.impl.RequestParametersImpl
  super_class: java.lang.Object
{
  private java.util.Map<java.lang.String, io.vertx.ext.web.api.RequestParameter> pathParameters;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;

  private java.util.Map<java.lang.String, io.vertx.ext.web.api.RequestParameter> queryParameters;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;

  private java.util.Map<java.lang.String, io.vertx.ext.web.api.RequestParameter> headerParameters;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;

  private java.util.Map<java.lang.String, io.vertx.ext.web.api.RequestParameter> cookieParameters;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;

  private java.util.Map<java.lang.String, io.vertx.ext.web.api.RequestParameter> formParameters;
    descriptor: Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;

  private io.vertx.ext.web.api.RequestParameter body;
    descriptor: Lio/vertx/ext/web/api/RequestParameter;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
         0: .line 22
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 23
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield io.vertx.ext.web.api.impl.RequestParametersImpl.pathParameters:Ljava/util/Map;
         2: .line 24
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield io.vertx.ext.web.api.impl.RequestParametersImpl.queryParameters:Ljava/util/Map;
         3: .line 25
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield io.vertx.ext.web.api.impl.RequestParametersImpl.headerParameters:Ljava/util/Map;
         4: .line 26
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield io.vertx.ext.web.api.impl.RequestParametersImpl.cookieParameters:Ljava/util/Map;
         5: .line 27
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield io.vertx.ext.web.api.impl.RequestParametersImpl.formParameters:Ljava/util/Map;
         6: .line 28
            aload 0 /* this */
            aconst_null
            putfield io.vertx.ext.web.api.impl.RequestParametersImpl.body:Lio/vertx/ext/web/api/RequestParameter;
         7: .line 29
            return
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;

  public void setPathParameters(java.util.Map<java.lang.String, io.vertx.ext.web.api.RequestParameter>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
        start local 1 // java.util.Map pathParameters
         0: .line 32
            aload 1 /* pathParameters */
            ifnull 2
         1: .line 33
            aload 0 /* this */
            aload 1 /* pathParameters */
            putfield io.vertx.ext.web.api.impl.RequestParametersImpl.pathParameters:Ljava/util/Map;
         2: .line 35
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.Map pathParameters
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            0    3     1  pathParameters  Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;)V
    MethodParameters:
                Name  Flags
      pathParameters  

  public void setQueryParameters(java.util.Map<java.lang.String, io.vertx.ext.web.api.RequestParameter>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
        start local 1 // java.util.Map queryParameters
         0: .line 38
            aload 1 /* queryParameters */
            ifnull 2
         1: .line 39
            aload 0 /* this */
            aload 1 /* queryParameters */
            putfield io.vertx.ext.web.api.impl.RequestParametersImpl.queryParameters:Ljava/util/Map;
         2: .line 41
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.Map queryParameters
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            0    3     1  queryParameters  Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;)V
    MethodParameters:
                 Name  Flags
      queryParameters  

  public void setHeaderParameters(java.util.Map<java.lang.String, io.vertx.ext.web.api.RequestParameter>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
        start local 1 // java.util.Map headerParameters
         0: .line 44
            aload 1 /* headerParameters */
            ifnull 2
         1: .line 45
            aload 0 /* this */
            aload 1 /* headerParameters */
            putfield io.vertx.ext.web.api.impl.RequestParametersImpl.headerParameters:Ljava/util/Map;
         2: .line 47
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.Map headerParameters
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    3     0              this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            0    3     1  headerParameters  Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;)V
    MethodParameters:
                  Name  Flags
      headerParameters  

  public void setCookieParameters(java.util.Map<java.lang.String, io.vertx.ext.web.api.RequestParameter>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
        start local 1 // java.util.Map cookieParameters
         0: .line 50
            aload 1 /* cookieParameters */
            ifnull 2
         1: .line 51
            aload 0 /* this */
            aload 1 /* cookieParameters */
            putfield io.vertx.ext.web.api.impl.RequestParametersImpl.cookieParameters:Ljava/util/Map;
         2: .line 53
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.Map cookieParameters
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    3     0              this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            0    3     1  cookieParameters  Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;)V
    MethodParameters:
                  Name  Flags
      cookieParameters  

  public void setFormParameters(java.util.Map<java.lang.String, io.vertx.ext.web.api.RequestParameter>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
        start local 1 // java.util.Map formParameters
         0: .line 56
            aload 1 /* formParameters */
            ifnull 2
         1: .line 57
            aload 0 /* this */
            aload 1 /* formParameters */
            putfield io.vertx.ext.web.api.impl.RequestParametersImpl.formParameters:Ljava/util/Map;
         2: .line 59
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.Map formParameters
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            0    3     1  formParameters  Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;)V
    MethodParameters:
                Name  Flags
      formParameters  

  public void setBody(io.vertx.ext.web.api.RequestParameter);
    descriptor: (Lio/vertx/ext/web/api/RequestParameter;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
        start local 1 // io.vertx.ext.web.api.RequestParameter body
         0: .line 62
            aload 1 /* body */
            ifnull 2
         1: .line 63
            aload 0 /* this */
            aload 1 /* body */
            putfield io.vertx.ext.web.api.impl.RequestParametersImpl.body:Lio/vertx/ext/web/api/RequestParameter;
         2: .line 65
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.ext.web.api.RequestParameter body
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            0    3     1  body  Lio/vertx/ext/web/api/RequestParameter;
    MethodParameters:
      Name  Flags
      body  

  public void merge(io.vertx.ext.web.api.impl.RequestParametersImpl);
    descriptor: (Lio/vertx/ext/web/api/impl/RequestParametersImpl;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
        start local 1 // io.vertx.ext.web.api.impl.RequestParametersImpl other
         0: .line 68
            aload 1 /* other */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.pathParameters:Ljava/util/Map;
            ifnull 2
         1: .line 69
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.pathParameters:Ljava/util/Map;
            aload 1 /* other */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.pathParameters:Ljava/util/Map;
            invokeinterface java.util.Map.putAll:(Ljava/util/Map;)V
         2: .line 70
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.queryParameters:Ljava/util/Map;
            ifnull 4
         3: .line 71
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.queryParameters:Ljava/util/Map;
            aload 1 /* other */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.queryParameters:Ljava/util/Map;
            invokeinterface java.util.Map.putAll:(Ljava/util/Map;)V
         4: .line 72
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.headerParameters:Ljava/util/Map;
            ifnull 6
         5: .line 73
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.headerParameters:Ljava/util/Map;
            aload 1 /* other */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.headerParameters:Ljava/util/Map;
            invokeinterface java.util.Map.putAll:(Ljava/util/Map;)V
         6: .line 74
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.cookieParameters:Ljava/util/Map;
            ifnull 8
         7: .line 75
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.cookieParameters:Ljava/util/Map;
            aload 1 /* other */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.cookieParameters:Ljava/util/Map;
            invokeinterface java.util.Map.putAll:(Ljava/util/Map;)V
         8: .line 76
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.formParameters:Ljava/util/Map;
            ifnull 10
         9: .line 77
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.formParameters:Ljava/util/Map;
            aload 1 /* other */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.formParameters:Ljava/util/Map;
            invokeinterface java.util.Map.putAll:(Ljava/util/Map;)V
        10: .line 78
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.body:Lio/vertx/ext/web/api/RequestParameter;
            ifnonnull 11
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.body:Lio/vertx/ext/web/api/RequestParameter;
            goto 12
      StackMap locals:
      StackMap stack: io.vertx.ext.web.api.impl.RequestParametersImpl
        11: aload 1 /* other */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.body:Lio/vertx/ext/web/api/RequestParameter;
      StackMap locals: io.vertx.ext.web.api.impl.RequestParametersImpl io.vertx.ext.web.api.impl.RequestParametersImpl
      StackMap stack: io.vertx.ext.web.api.impl.RequestParametersImpl io.vertx.ext.web.api.RequestParameter
        12: putfield io.vertx.ext.web.api.impl.RequestParametersImpl.body:Lio/vertx/ext/web/api/RequestParameter;
        13: .line 79
            return
        end local 1 // io.vertx.ext.web.api.impl.RequestParametersImpl other
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            0   14     1  other  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
    MethodParameters:
       Name  Flags
      other  

  public java.util.List<java.lang.String> pathParametersNames();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
         0: .line 83
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.pathParameters:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            areturn
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  public io.vertx.ext.web.api.RequestParameter pathParameter(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/api/RequestParameter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
        start local 1 // java.lang.String name
         0: .line 88
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.pathParameters:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.ext.web.api.RequestParameter
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public java.util.List<java.lang.String> queryParametersNames();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
         0: .line 93
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.queryParameters:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            areturn
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  public io.vertx.ext.web.api.RequestParameter queryParameter(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/api/RequestParameter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
        start local 1 // java.lang.String name
         0: .line 98
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.queryParameters:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.ext.web.api.RequestParameter
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public java.util.List<java.lang.String> headerParametersNames();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
         0: .line 103
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.headerParameters:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            areturn
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  public io.vertx.ext.web.api.RequestParameter headerParameter(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/api/RequestParameter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
        start local 1 // java.lang.String name
         0: .line 108
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.headerParameters:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.ext.web.api.RequestParameter
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public java.util.List<java.lang.String> cookieParametersNames();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
         0: .line 113
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.cookieParameters:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            areturn
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  public io.vertx.ext.web.api.RequestParameter cookieParameter(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/api/RequestParameter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
        start local 1 // java.lang.String name
         0: .line 118
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.cookieParameters:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.ext.web.api.RequestParameter
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public java.util.List<java.lang.String> formParametersNames();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
         0: .line 123
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.formParameters:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            areturn
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  public io.vertx.ext.web.api.RequestParameter formParameter(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/api/RequestParameter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
        start local 1 // java.lang.String name
         0: .line 128
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.formParameters:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast io.vertx.ext.web.api.RequestParameter
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public io.vertx.ext.web.api.RequestParameter body();
    descriptor: ()Lio/vertx/ext/web/api/RequestParameter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
         0: .line 133
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.body:Lio/vertx/ext/web/api/RequestParameter;
            areturn
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;

  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.ext.web.api.impl.RequestParametersImpl this
        start local 1 // java.lang.Object o
         0: .line 138
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 139
      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 140
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.vertx.ext.web.api.impl.RequestParametersImpl
            astore 2 /* that */
        start local 2 // io.vertx.ext.web.api.impl.RequestParametersImpl that
         4: .line 141
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.pathParameters:Ljava/util/Map;
            aload 2 /* that */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.pathParameters:Ljava/util/Map;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 11
         5: .line 142
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.queryParameters:Ljava/util/Map;
            aload 2 /* that */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.queryParameters:Ljava/util/Map;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 11
         6: .line 143
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.headerParameters:Ljava/util/Map;
            aload 2 /* that */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.headerParameters:Ljava/util/Map;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 11
         7: .line 144
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.cookieParameters:Ljava/util/Map;
            aload 2 /* that */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.cookieParameters:Ljava/util/Map;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 11
         8: .line 145
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.formParameters:Ljava/util/Map;
            aload 2 /* that */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.formParameters:Ljava/util/Map;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 11
         9: .line 146
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.body:Lio/vertx/ext/web/api/RequestParameter;
            aload 2 /* that */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.body:Lio/vertx/ext/web/api/RequestParameter;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 11
        10: .line 141
            iconst_1
            ireturn
      StackMap locals: io.vertx.ext.web.api.impl.RequestParametersImpl
      StackMap stack:
        11: iconst_0
            ireturn
        end local 2 // io.vertx.ext.web.api.impl.RequestParametersImpl that
        end local 1 // java.lang.Object o
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            0   12     1     o  Ljava/lang/Object;
            4   12     2  that  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
         0: .line 151
            bipush 6
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.pathParameters:Ljava/util/Map;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.queryParameters:Ljava/util/Map;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.headerParameters:Ljava/util/Map;
            aastore
            dup
            iconst_3
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.cookieParameters:Ljava/util/Map;
            aastore
            dup
            iconst_4
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.formParameters:Ljava/util/Map;
            aastore
            dup
            iconst_5
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.body:Lio/vertx/ext/web/api/RequestParameter;
            aastore
            invokestatic java.util.Objects.hash:([Ljava/lang/Object;)I
            ireturn
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;

  public io.vertx.core.json.JsonObject toJson();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
         0: .line 156
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 1 /* root */
        start local 1 // io.vertx.core.json.JsonObject root
         1: .line 157
            aload 1 /* root */
            ldc "path"
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.pathParameters:Ljava/util/Map;
            invokevirtual io.vertx.ext.web.api.impl.RequestParametersImpl.mapToJsonObject:(Ljava/util/Map;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         2: .line 158
            aload 1 /* root */
            ldc "query"
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.queryParameters:Ljava/util/Map;
            invokevirtual io.vertx.ext.web.api.impl.RequestParametersImpl.mapToJsonObject:(Ljava/util/Map;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         3: .line 159
            aload 1 /* root */
            ldc "header"
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.headerParameters:Ljava/util/Map;
            invokevirtual io.vertx.ext.web.api.impl.RequestParametersImpl.mapToJsonObject:(Ljava/util/Map;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         4: .line 160
            aload 1 /* root */
            ldc "cookie"
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.cookieParameters:Ljava/util/Map;
            invokevirtual io.vertx.ext.web.api.impl.RequestParametersImpl.mapToJsonObject:(Ljava/util/Map;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         5: .line 161
            aload 1 /* root */
            ldc "form"
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.formParameters:Ljava/util/Map;
            invokevirtual io.vertx.ext.web.api.impl.RequestParametersImpl.mapToJsonObject:(Ljava/util/Map;)Lio/vertx/core/json/JsonObject;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         6: .line 162
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.body:Lio/vertx/ext/web/api/RequestParameter;
            ifnull 8
         7: .line 163
            aload 1 /* root */
            ldc "body"
            aload 0 /* this */
            getfield io.vertx.ext.web.api.impl.RequestParametersImpl.body:Lio/vertx/ext/web/api/RequestParameter;
            invokeinterface io.vertx.ext.web.api.RequestParameter.toJson:()Ljava/lang/Object;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            pop
         8: .line 164
      StackMap locals: io.vertx.core.json.JsonObject
      StackMap stack:
            aload 1 /* root */
            areturn
        end local 1 // io.vertx.core.json.JsonObject root
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            1    9     1  root  Lio/vertx/core/json/JsonObject;

  private io.vertx.core.json.JsonObject mapToJsonObject(java.util.Map<java.lang.String, io.vertx.ext.web.api.RequestParameter>);
    descriptor: (Ljava/util/Map;)Lio/vertx/core/json/JsonObject;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
        start local 1 // java.util.Map params
         0: .line 168
            aload 1 /* params */
         1: .line 169
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
         2: .line 170
            invokeinterface java.util.Set.stream:()Ljava/util/stream/Stream;
         3: .line 172
            invokedynamic get()Ljava/util/function/Supplier;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()Ljava/lang/Object;
                  io/vertx/core/json/JsonObject.<init>()V (8)
                  ()Lio/vertx/core/json/JsonObject;
         4: .line 173
            invokedynamic accept()Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  io/vertx/ext/web/api/impl/RequestParametersImpl.lambda$1(Lio/vertx/core/json/JsonObject;Ljava/util/Map$Entry;)V (6)
                  (Lio/vertx/core/json/JsonObject;Ljava/util/Map$Entry;)V
         5: .line 174
            invokedynamic apply()Ljava/util/function/BinaryOperator;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/core/json/JsonObject.mergeIn(Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonObject; (5)
                  (Lio/vertx/core/json/JsonObject;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonObject;
            iconst_0
            anewarray java.util.stream.Collector$Characteristics
         6: .line 171
            invokestatic java.util.stream.Collector.of:(Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;Ljava/util/function/BinaryOperator;[Ljava/util/stream/Collector$Characteristics;)Ljava/util/stream/Collector;
            invokeinterface java.util.stream.Stream.collect:(Ljava/util/stream/Collector;)Ljava/lang/Object;
            checkcast io.vertx.core.json.JsonObject
         7: .line 168
            areturn
        end local 1 // java.util.Map params
        end local 0 // io.vertx.ext.web.api.impl.RequestParametersImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lio/vertx/ext/web/api/impl/RequestParametersImpl;
            0    8     1  params  Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;)Lio/vertx/core/json/JsonObject;
    MethodParameters:
        Name  Flags
      params  

  private static void lambda$1(io.vertx.core.json.JsonObject, java.util.Map$Entry);
    descriptor: (Lio/vertx/core/json/JsonObject;Ljava/util/Map$Entry;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.json.JsonObject j
        start local 1 // java.util.Map$Entry e
         0: .line 173
            aload 0 /* j */
            aload 1 /* e */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.lang.String
            aload 1 /* e */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast io.vertx.ext.web.api.RequestParameter
            invokeinterface io.vertx.ext.web.api.RequestParameter.toJson:()Ljava/lang/Object;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            return
        end local 1 // java.util.Map$Entry e
        end local 0 // io.vertx.core.json.JsonObject j
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     j  Lio/vertx/core/json/JsonObject;
            0    1     1     e  Ljava/util/Map$Entry<Ljava/lang/String;Lio/vertx/ext/web/api/RequestParameter;>;
}
SourceFile: "RequestParametersImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract Entry = java.util.Map$Entry of java.util.Map
  public final Characteristics = java.util.stream.Collector$Characteristics of java.util.stream.Collector