public class io.vertx.pgclient.PgConnectOptions extends io.vertx.sqlclient.SqlConnectOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.pgclient.PgConnectOptions
  super_class: io.vertx.sqlclient.SqlConnectOptions
{
  public static final java.lang.String DEFAULT_HOST;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "localhost"

  public static int DEFAULT_PORT;
    descriptor: I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC

  public static final java.lang.String DEFAULT_DATABASE;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "db"

  public static final java.lang.String DEFAULT_USER;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "user"

  public static final java.lang.String DEFAULT_PASSWORD;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "pass"

  public static final int DEFAULT_PIPELINING_LIMIT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 256

  public static final io.vertx.pgclient.SslMode DEFAULT_SSLMODE;
    descriptor: Lio/vertx/pgclient/SslMode;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final java.util.Map<java.lang.String, java.lang.String> DEFAULT_PROPERTIES;
    descriptor: Ljava/util/Map;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;

  private int pipeliningLimit;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.pgclient.SslMode sslMode;
    descriptor: Lio/vertx/pgclient/SslMode;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 97
            sipush 5432
            putstatic io.vertx.pgclient.PgConnectOptions.DEFAULT_PORT:I
         1: .line 102
            getstatic io.vertx.pgclient.SslMode.DISABLE:Lio/vertx/pgclient/SslMode;
            putstatic io.vertx.pgclient.PgConnectOptions.DEFAULT_SSLMODE:Lio/vertx/pgclient/SslMode;
         2: .line 106
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            astore 0 /* defaultProperties */
        start local 0 // java.util.Map defaultProperties
         3: .line 107
            aload 0 /* defaultProperties */
            ldc "application_name"
            ldc "vertx-pg-client"
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 108
            aload 0 /* defaultProperties */
            ldc "client_encoding"
            ldc "utf8"
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 109
            aload 0 /* defaultProperties */
            ldc "DateStyle"
            ldc "ISO"
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         6: .line 110
            aload 0 /* defaultProperties */
            ldc "extra_float_digits"
            ldc "2"
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         7: .line 111
            aload 0 /* defaultProperties */
            invokestatic java.util.Collections.unmodifiableMap:(Ljava/util/Map;)Ljava/util/Map;
            putstatic io.vertx.pgclient.PgConnectOptions.DEFAULT_PROPERTIES:Ljava/util/Map;
        end local 0 // java.util.Map defaultProperties
         8: .line 112
            return
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            3    8     0  defaultProperties  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;

  public static io.vertx.pgclient.PgConnectOptions fromUri(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.lang.String connectionUri
         0: .line 54
            aload 0 /* connectionUri */
            invokestatic io.vertx.pgclient.impl.PgConnectionUriParser.parse:(Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            astore 1 /* parsedConfiguration */
        start local 1 // io.vertx.core.json.JsonObject parsedConfiguration
         1: .line 55
            new io.vertx.pgclient.PgConnectOptions
            dup
            aload 1 /* parsedConfiguration */
            invokespecial io.vertx.pgclient.PgConnectOptions.<init>:(Lio/vertx/core/json/JsonObject;)V
            areturn
        end local 1 // io.vertx.core.json.JsonObject parsedConfiguration
        end local 0 // java.lang.String connectionUri
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    2     0        connectionUri  Ljava/lang/String;
            1    2     1  parsedConfiguration  Lio/vertx/core/json/JsonObject;
    Exceptions:
      throws java.lang.IllegalArgumentException
    MethodParameters:
               Name  Flags
      connectionUri  

  public static io.vertx.pgclient.PgConnectOptions fromEnv();
    descriptor: ()Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=0
         0: .line 63
            new io.vertx.pgclient.PgConnectOptions
            dup
            invokespecial io.vertx.pgclient.PgConnectOptions.<init>:()V
            astore 0 /* pgConnectOptions */
        start local 0 // io.vertx.pgclient.PgConnectOptions pgConnectOptions
         1: .line 65
            ldc "PGHOSTADDR"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            ifnonnull 5
         2: .line 66
            ldc "PGHOST"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            ifnull 6
         3: .line 67
            aload 0 /* pgConnectOptions */
            ldc "PGHOST"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual io.vertx.pgclient.PgConnectOptions.setHost:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            pop
         4: .line 69
            goto 6
         5: .line 70
      StackMap locals: io.vertx.pgclient.PgConnectOptions
      StackMap stack:
            aload 0 /* pgConnectOptions */
            ldc "PGHOSTADDR"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual io.vertx.pgclient.PgConnectOptions.setHost:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            pop
         6: .line 73
      StackMap locals:
      StackMap stack:
            ldc "PGPORT"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            ifnull 10
         7: .line 75
            aload 0 /* pgConnectOptions */
            ldc "PGPORT"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPort:(I)Lio/vertx/pgclient/PgConnectOptions;
            pop
         8: .line 76
            goto 10
      StackMap locals:
      StackMap stack: java.lang.NumberFormatException
         9: pop
        10: .line 81
      StackMap locals:
      StackMap stack:
            ldc "PGDATABASE"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            ifnull 12
        11: .line 82
            aload 0 /* pgConnectOptions */
            ldc "PGDATABASE"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual io.vertx.pgclient.PgConnectOptions.setDatabase:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            pop
        12: .line 84
      StackMap locals:
      StackMap stack:
            ldc "PGUSER"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            ifnull 14
        13: .line 85
            aload 0 /* pgConnectOptions */
            ldc "PGUSER"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual io.vertx.pgclient.PgConnectOptions.setUser:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            pop
        14: .line 87
      StackMap locals:
      StackMap stack:
            ldc "PGPASSWORD"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            ifnull 16
        15: .line 88
            aload 0 /* pgConnectOptions */
            ldc "PGPASSWORD"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPassword:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            pop
        16: .line 90
      StackMap locals:
      StackMap stack:
            ldc "PGSSLMODE"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            ifnull 18
        17: .line 91
            aload 0 /* pgConnectOptions */
            ldc "PGSSLMODE"
            invokestatic java.lang.System.getenv:(Ljava/lang/String;)Ljava/lang/String;
            invokestatic io.vertx.pgclient.SslMode.of:(Ljava/lang/String;)Lio/vertx/pgclient/SslMode;
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSslMode:(Lio/vertx/pgclient/SslMode;)Lio/vertx/pgclient/PgConnectOptions;
            pop
        18: .line 93
      StackMap locals:
      StackMap stack:
            aload 0 /* pgConnectOptions */
            areturn
        end local 0 // io.vertx.pgclient.PgConnectOptions pgConnectOptions
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            1   19     0  pgConnectOptions  Lio/vertx/pgclient/PgConnectOptions;
      Exception table:
        from    to  target  type
           7     8       9  Class java.lang.NumberFormatException

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.pgclient.PgConnectOptions this
         0: .line 118
            aload 0 /* this */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.<init>:()V
         1: .line 114
            aload 0 /* this */
            sipush 256
            putfield io.vertx.pgclient.PgConnectOptions.pipeliningLimit:I
         2: .line 115
            aload 0 /* this */
            getstatic io.vertx.pgclient.PgConnectOptions.DEFAULT_SSLMODE:Lio/vertx/pgclient/SslMode;
            putfield io.vertx.pgclient.PgConnectOptions.sslMode:Lio/vertx/pgclient/SslMode;
         3: .line 119
            return
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/pgclient/PgConnectOptions;

  public void <init>(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 122
            aload 0 /* this */
            aload 1 /* json */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.<init>:(Lio/vertx/core/json/JsonObject;)V
         1: .line 114
            aload 0 /* this */
            sipush 256
            putfield io.vertx.pgclient.PgConnectOptions.pipeliningLimit:I
         2: .line 115
            aload 0 /* this */
            getstatic io.vertx.pgclient.PgConnectOptions.DEFAULT_SSLMODE:Lio/vertx/pgclient/SslMode;
            putfield io.vertx.pgclient.PgConnectOptions.sslMode:Lio/vertx/pgclient/SslMode;
         3: .line 123
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.pgclient.PgConnectOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/pgclient/PgConnectOptions;)V
         4: .line 124
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/pgclient/PgConnectOptions;
            0    5     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

  public void <init>(io.vertx.sqlclient.SqlConnectOptions);
    descriptor: (Lio/vertx/sqlclient/SqlConnectOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.sqlclient.SqlConnectOptions other
         0: .line 127
            aload 0 /* this */
            aload 1 /* other */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.<init>:(Lio/vertx/sqlclient/SqlConnectOptions;)V
         1: .line 114
            aload 0 /* this */
            sipush 256
            putfield io.vertx.pgclient.PgConnectOptions.pipeliningLimit:I
         2: .line 115
            aload 0 /* this */
            getstatic io.vertx.pgclient.PgConnectOptions.DEFAULT_SSLMODE:Lio/vertx/pgclient/SslMode;
            putfield io.vertx.pgclient.PgConnectOptions.sslMode:Lio/vertx/pgclient/SslMode;
         3: .line 128
            aload 1 /* other */
            instanceof io.vertx.pgclient.PgConnectOptions
            ifeq 7
         4: .line 129
            aload 1 /* other */
            checkcast io.vertx.pgclient.PgConnectOptions
            astore 2 /* opts */
        start local 2 // io.vertx.pgclient.PgConnectOptions opts
         5: .line 130
            aload 0 /* this */
            aload 2 /* opts */
            getfield io.vertx.pgclient.PgConnectOptions.pipeliningLimit:I
            putfield io.vertx.pgclient.PgConnectOptions.pipeliningLimit:I
         6: .line 131
            aload 0 /* this */
            aload 2 /* opts */
            getfield io.vertx.pgclient.PgConnectOptions.sslMode:Lio/vertx/pgclient/SslMode;
            putfield io.vertx.pgclient.PgConnectOptions.sslMode:Lio/vertx/pgclient/SslMode;
        end local 2 // io.vertx.pgclient.PgConnectOptions opts
         7: .line 133
      StackMap locals: io.vertx.pgclient.PgConnectOptions io.vertx.sqlclient.SqlConnectOptions
      StackMap stack:
            return
        end local 1 // io.vertx.sqlclient.SqlConnectOptions other
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lio/vertx/pgclient/PgConnectOptions;
            0    8     1  other  Lio/vertx/sqlclient/SqlConnectOptions;
            5    7     2   opts  Lio/vertx/pgclient/PgConnectOptions;
    MethodParameters:
       Name  Flags
      other  

  public void <init>(io.vertx.pgclient.PgConnectOptions);
    descriptor: (Lio/vertx/pgclient/PgConnectOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.pgclient.PgConnectOptions other
         0: .line 136
            aload 0 /* this */
            aload 1 /* other */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.<init>:(Lio/vertx/sqlclient/SqlConnectOptions;)V
         1: .line 114
            aload 0 /* this */
            sipush 256
            putfield io.vertx.pgclient.PgConnectOptions.pipeliningLimit:I
         2: .line 115
            aload 0 /* this */
            getstatic io.vertx.pgclient.PgConnectOptions.DEFAULT_SSLMODE:Lio/vertx/pgclient/SslMode;
            putfield io.vertx.pgclient.PgConnectOptions.sslMode:Lio/vertx/pgclient/SslMode;
         3: .line 137
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.pgclient.PgConnectOptions.pipeliningLimit:I
            putfield io.vertx.pgclient.PgConnectOptions.pipeliningLimit:I
         4: .line 138
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.pgclient.PgConnectOptions.sslMode:Lio/vertx/pgclient/SslMode;
            putfield io.vertx.pgclient.PgConnectOptions.sslMode:Lio/vertx/pgclient/SslMode;
         5: .line 139
            return
        end local 1 // io.vertx.pgclient.PgConnectOptions other
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/vertx/pgclient/PgConnectOptions;
            0    6     1  other  Lio/vertx/pgclient/PgConnectOptions;
    MethodParameters:
       Name  Flags
      other  

  public io.vertx.pgclient.PgConnectOptions setHost(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.lang.String host
         0: .line 143
            aload 0 /* this */
            aload 1 /* host */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setHost:(Ljava/lang/String;)Lio/vertx/sqlclient/SqlConnectOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.lang.String host
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  host  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      host  

  public io.vertx.pgclient.PgConnectOptions setPort(int);
    descriptor: (I)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // int port
         0: .line 148
            aload 0 /* this */
            iload 1 /* port */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setPort:(I)Lio/vertx/sqlclient/SqlConnectOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // int port
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  port  I
    MethodParameters:
      Name  Flags
      port  

  public io.vertx.pgclient.PgConnectOptions setUser(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.lang.String user
         0: .line 153
            aload 0 /* this */
            aload 1 /* user */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setUser:(Ljava/lang/String;)Lio/vertx/sqlclient/SqlConnectOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.lang.String user
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  user  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      user  

  public io.vertx.pgclient.PgConnectOptions setPassword(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.lang.String password
         0: .line 158
            aload 0 /* this */
            aload 1 /* password */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setPassword:(Ljava/lang/String;)Lio/vertx/sqlclient/SqlConnectOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.lang.String password
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  password  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      password  

  public io.vertx.pgclient.PgConnectOptions setDatabase(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.lang.String database
         0: .line 163
            aload 0 /* this */
            aload 1 /* database */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setDatabase:(Ljava/lang/String;)Lio/vertx/sqlclient/SqlConnectOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.lang.String database
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  database  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      database  

  public int getPipeliningLimit();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.pgclient.PgConnectOptions this
         0: .line 167
            aload 0 /* this */
            getfield io.vertx.pgclient.PgConnectOptions.pipeliningLimit:I
            ireturn
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/pgclient/PgConnectOptions;

  public io.vertx.pgclient.PgConnectOptions setPipeliningLimit(int);
    descriptor: (I)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // int pipeliningLimit
         0: .line 171
            iload 1 /* pipeliningLimit */
            iconst_1
            if_icmpge 2
         1: .line 172
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 174
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* pipeliningLimit */
            putfield io.vertx.pgclient.PgConnectOptions.pipeliningLimit:I
         3: .line 175
            aload 0 /* this */
            areturn
        end local 1 // int pipeliningLimit
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lio/vertx/pgclient/PgConnectOptions;
            0    4     1  pipeliningLimit  I
    MethodParameters:
                 Name  Flags
      pipeliningLimit  

  public io.vertx.pgclient.PgConnectOptions setCachePreparedStatements(boolean);
    descriptor: (Z)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // boolean cachePreparedStatements
         0: .line 179
            aload 0 /* this */
            iload 1 /* cachePreparedStatements */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setCachePreparedStatements:(Z)Lio/vertx/sqlclient/SqlConnectOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // boolean cachePreparedStatements
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    1     0                     this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  cachePreparedStatements  Z
    MethodParameters:
                         Name  Flags
      cachePreparedStatements  

  public io.vertx.pgclient.PgConnectOptions setPreparedStatementCacheMaxSize(int);
    descriptor: (I)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // int preparedStatementCacheMaxSize
         0: .line 184
            aload 0 /* this */
            iload 1 /* preparedStatementCacheMaxSize */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setPreparedStatementCacheMaxSize:(I)Lio/vertx/sqlclient/SqlConnectOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // int preparedStatementCacheMaxSize
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot                           Name  Signature
            0    1     0                           this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  preparedStatementCacheMaxSize  I
    MethodParameters:
                               Name  Flags
      preparedStatementCacheMaxSize  

  public io.vertx.pgclient.PgConnectOptions setPreparedStatementCacheSqlFilter(java.util.function.Predicate<java.lang.String>);
    descriptor: (Ljava/util/function/Predicate;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.util.function.Predicate predicate
         0: .line 190
            aload 0 /* this */
            aload 1 /* predicate */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setPreparedStatementCacheSqlFilter:(Ljava/util/function/Predicate;)Lio/vertx/sqlclient/SqlConnectOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.util.function.Predicate predicate
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  predicate  Ljava/util/function/Predicate<Ljava/lang/String;>;
    Signature: (Ljava/util/function/Predicate<Ljava/lang/String;>;)Lio/vertx/pgclient/PgConnectOptions;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()
    MethodParameters:
           Name  Flags
      predicate  

  public io.vertx.pgclient.PgConnectOptions setPreparedStatementCacheSqlLimit(int);
    descriptor: (I)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // int preparedStatementCacheSqlLimit
         0: .line 195
            aload 0 /* this */
            iload 1 /* preparedStatementCacheSqlLimit */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setPreparedStatementCacheSqlLimit:(I)Lio/vertx/sqlclient/SqlConnectOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // int preparedStatementCacheSqlLimit
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot                            Name  Signature
            0    1     0                            this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  preparedStatementCacheSqlLimit  I
    MethodParameters:
                                Name  Flags
      preparedStatementCacheSqlLimit  

  public io.vertx.pgclient.PgConnectOptions setProperties(java.util.Map<java.lang.String, java.lang.String>);
    descriptor: (Ljava/util/Map;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.util.Map properties
         0: .line 200
            aload 0 /* this */
            aload 1 /* properties */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setProperties:(Ljava/util/Map;)Lio/vertx/sqlclient/SqlConnectOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.util.Map properties
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  properties  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;)Lio/vertx/pgclient/PgConnectOptions;
    MethodParameters:
            Name  Flags
      properties  

  public io.vertx.pgclient.PgConnectOptions addProperty(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.lang.String key
        start local 2 // java.lang.String value
         0: .line 206
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.addProperty:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/sqlclient/SqlConnectOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 2 // java.lang.String value
        end local 1 // java.lang.String key
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1    key  Ljava/lang/String;
            0    1     2  value  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()
    MethodParameters:
       Name  Flags
      key    
      value  

  public io.vertx.pgclient.SslMode getSslMode();
    descriptor: ()Lio/vertx/pgclient/SslMode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.pgclient.PgConnectOptions this
         0: .line 213
            aload 0 /* this */
            getfield io.vertx.pgclient.PgConnectOptions.sslMode:Lio/vertx/pgclient/SslMode;
            areturn
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/pgclient/PgConnectOptions;

  public io.vertx.pgclient.PgConnectOptions setSslMode(io.vertx.pgclient.SslMode);
    descriptor: (Lio/vertx/pgclient/SslMode;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.pgclient.SslMode sslmode
         0: .line 223
            aload 0 /* this */
            aload 1 /* sslmode */
            putfield io.vertx.pgclient.PgConnectOptions.sslMode:Lio/vertx/pgclient/SslMode;
         1: .line 224
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.pgclient.SslMode sslmode
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/pgclient/PgConnectOptions;
            0    2     1  sslmode  Lio/vertx/pgclient/SslMode;
    MethodParameters:
         Name  Flags
      sslmode  

  public io.vertx.pgclient.PgConnectOptions setSendBufferSize(int);
    descriptor: (I)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // int sendBufferSize
         0: .line 229
            aload 0 /* this */
            iload 1 /* sendBufferSize */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setSendBufferSize:(I)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // int sendBufferSize
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  sendBufferSize  I
    MethodParameters:
                Name  Flags
      sendBufferSize  

  public io.vertx.pgclient.PgConnectOptions setReceiveBufferSize(int);
    descriptor: (I)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // int receiveBufferSize
         0: .line 234
            aload 0 /* this */
            iload 1 /* receiveBufferSize */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setReceiveBufferSize:(I)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // int receiveBufferSize
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  receiveBufferSize  I
    MethodParameters:
                   Name  Flags
      receiveBufferSize  

  public io.vertx.pgclient.PgConnectOptions setReuseAddress(boolean);
    descriptor: (Z)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // boolean reuseAddress
         0: .line 239
            aload 0 /* this */
            iload 1 /* reuseAddress */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setReuseAddress:(Z)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // boolean reuseAddress
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  reuseAddress  Z
    MethodParameters:
              Name  Flags
      reuseAddress  

  public io.vertx.pgclient.PgConnectOptions setTrafficClass(int);
    descriptor: (I)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // int trafficClass
         0: .line 244
            aload 0 /* this */
            iload 1 /* trafficClass */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setTrafficClass:(I)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // int trafficClass
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  trafficClass  I
    MethodParameters:
              Name  Flags
      trafficClass  

  public io.vertx.pgclient.PgConnectOptions setTcpNoDelay(boolean);
    descriptor: (Z)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // boolean tcpNoDelay
         0: .line 249
            aload 0 /* this */
            iload 1 /* tcpNoDelay */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setTcpNoDelay:(Z)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // boolean tcpNoDelay
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  tcpNoDelay  Z
    MethodParameters:
            Name  Flags
      tcpNoDelay  

  public io.vertx.pgclient.PgConnectOptions setTcpKeepAlive(boolean);
    descriptor: (Z)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // boolean tcpKeepAlive
         0: .line 254
            aload 0 /* this */
            iload 1 /* tcpKeepAlive */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setTcpKeepAlive:(Z)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // boolean tcpKeepAlive
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  tcpKeepAlive  Z
    MethodParameters:
              Name  Flags
      tcpKeepAlive  

  public io.vertx.pgclient.PgConnectOptions setSoLinger(int);
    descriptor: (I)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // int soLinger
         0: .line 259
            aload 0 /* this */
            iload 1 /* soLinger */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setSoLinger:(I)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // int soLinger
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  soLinger  I
    MethodParameters:
          Name  Flags
      soLinger  

  public io.vertx.pgclient.PgConnectOptions setIdleTimeout(int);
    descriptor: (I)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // int idleTimeout
         0: .line 264
            aload 0 /* this */
            iload 1 /* idleTimeout */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setIdleTimeout:(I)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // int idleTimeout
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  idleTimeout  I
    MethodParameters:
             Name  Flags
      idleTimeout  

  public io.vertx.pgclient.PgConnectOptions setIdleTimeoutUnit(java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/TimeUnit;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.util.concurrent.TimeUnit idleTimeoutUnit
         0: .line 269
            aload 0 /* this */
            aload 1 /* idleTimeoutUnit */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setIdleTimeoutUnit:(Ljava/util/concurrent/TimeUnit;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.util.concurrent.TimeUnit idleTimeoutUnit
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  idleTimeoutUnit  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
                 Name  Flags
      idleTimeoutUnit  

  public io.vertx.pgclient.PgConnectOptions setSsl(boolean);
    descriptor: (Z)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // boolean ssl
         0: .line 274
            iload 1 /* ssl */
            ifeq 3
         1: .line 275
            aload 0 /* this */
            getstatic io.vertx.pgclient.SslMode.VERIFY_CA:Lio/vertx/pgclient/SslMode;
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSslMode:(Lio/vertx/pgclient/SslMode;)Lio/vertx/pgclient/PgConnectOptions;
            pop
         2: .line 276
            goto 4
         3: .line 277
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic io.vertx.pgclient.SslMode.DISABLE:Lio/vertx/pgclient/SslMode;
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSslMode:(Lio/vertx/pgclient/SslMode;)Lio/vertx/pgclient/PgConnectOptions;
            pop
         4: .line 279
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // boolean ssl
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/pgclient/PgConnectOptions;
            0    5     1   ssl  Z
    MethodParameters:
      Name  Flags
      ssl   

  public io.vertx.pgclient.PgConnectOptions setKeyCertOptions(io.vertx.core.net.KeyCertOptions);
    descriptor: (Lio/vertx/core/net/KeyCertOptions;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.net.KeyCertOptions options
         0: .line 284
            aload 0 /* this */
            aload 1 /* options */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setKeyCertOptions:(Lio/vertx/core/net/KeyCertOptions;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // io.vertx.core.net.KeyCertOptions options
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  options  Lio/vertx/core/net/KeyCertOptions;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.pgclient.PgConnectOptions setKeyStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.net.JksOptions options
         0: .line 289
            aload 0 /* this */
            aload 1 /* options */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setKeyStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // io.vertx.core.net.JksOptions options
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  options  Lio/vertx/core/net/JksOptions;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.pgclient.PgConnectOptions setPfxKeyCertOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.net.PfxOptions options
         0: .line 294
            aload 0 /* this */
            aload 1 /* options */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setPfxKeyCertOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // io.vertx.core.net.PfxOptions options
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  options  Lio/vertx/core/net/PfxOptions;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.pgclient.PgConnectOptions setPemKeyCertOptions(io.vertx.core.net.PemKeyCertOptions);
    descriptor: (Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.net.PemKeyCertOptions options
         0: .line 299
            aload 0 /* this */
            aload 1 /* options */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setPemKeyCertOptions:(Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // io.vertx.core.net.PemKeyCertOptions options
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  options  Lio/vertx/core/net/PemKeyCertOptions;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.pgclient.PgConnectOptions setTrustOptions(io.vertx.core.net.TrustOptions);
    descriptor: (Lio/vertx/core/net/TrustOptions;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.net.TrustOptions options
         0: .line 304
            aload 0 /* this */
            aload 1 /* options */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setTrustOptions:(Lio/vertx/core/net/TrustOptions;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // io.vertx.core.net.TrustOptions options
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  options  Lio/vertx/core/net/TrustOptions;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.pgclient.PgConnectOptions setTrustStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.net.JksOptions options
         0: .line 309
            aload 0 /* this */
            aload 1 /* options */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setTrustStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // io.vertx.core.net.JksOptions options
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  options  Lio/vertx/core/net/JksOptions;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.pgclient.PgConnectOptions setPemTrustOptions(io.vertx.core.net.PemTrustOptions);
    descriptor: (Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.net.PemTrustOptions options
         0: .line 314
            aload 0 /* this */
            aload 1 /* options */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setPemTrustOptions:(Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // io.vertx.core.net.PemTrustOptions options
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  options  Lio/vertx/core/net/PemTrustOptions;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.pgclient.PgConnectOptions setPfxTrustOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.net.PfxOptions options
         0: .line 319
            aload 0 /* this */
            aload 1 /* options */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setPfxTrustOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // io.vertx.core.net.PfxOptions options
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  options  Lio/vertx/core/net/PfxOptions;
    MethodParameters:
         Name  Flags
      options  

  public io.vertx.pgclient.PgConnectOptions addEnabledCipherSuite(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.lang.String suite
         0: .line 324
            aload 0 /* this */
            aload 1 /* suite */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.addEnabledCipherSuite:(Ljava/lang/String;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.lang.String suite
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  suite  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      suite  

  public io.vertx.pgclient.PgConnectOptions addEnabledSecureTransportProtocol(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.lang.String protocol
         0: .line 329
            aload 0 /* this */
            aload 1 /* protocol */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.addEnabledSecureTransportProtocol:(Ljava/lang/String;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.lang.String protocol
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  protocol  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      protocol  

  public io.vertx.pgclient.PgConnectOptions addCrlPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.lang.String crlPath
         0: .line 334
            aload 0 /* this */
            aload 1 /* crlPath */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.addCrlPath:(Ljava/lang/String;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.lang.String crlPath
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  crlPath  Ljava/lang/String;
    Exceptions:
      throws java.lang.NullPointerException
    MethodParameters:
         Name  Flags
      crlPath  

  public io.vertx.pgclient.PgConnectOptions addCrlValue(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.buffer.Buffer crlValue
         0: .line 339
            aload 0 /* this */
            aload 1 /* crlValue */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.addCrlValue:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // io.vertx.core.buffer.Buffer crlValue
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  crlValue  Lio/vertx/core/buffer/Buffer;
    Exceptions:
      throws java.lang.NullPointerException
    MethodParameters:
          Name  Flags
      crlValue  

  public io.vertx.pgclient.PgConnectOptions setTrustAll(boolean);
    descriptor: (Z)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // boolean trustAll
         0: .line 344
            aload 0 /* this */
            iload 1 /* trustAll */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setTrustAll:(Z)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // boolean trustAll
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  trustAll  Z
    MethodParameters:
          Name  Flags
      trustAll  

  public io.vertx.pgclient.PgConnectOptions setConnectTimeout(int);
    descriptor: (I)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // int connectTimeout
         0: .line 349
            aload 0 /* this */
            iload 1 /* connectTimeout */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setConnectTimeout:(I)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // int connectTimeout
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  connectTimeout  I
    MethodParameters:
                Name  Flags
      connectTimeout  

  public io.vertx.pgclient.PgConnectOptions setMetricsName(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.lang.String metricsName
         0: .line 354
            aload 0 /* this */
            aload 1 /* metricsName */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setMetricsName:(Ljava/lang/String;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.lang.String metricsName
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  metricsName  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      metricsName  

  public io.vertx.pgclient.PgConnectOptions setReconnectAttempts(int);
    descriptor: (I)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // int attempts
         0: .line 359
            aload 0 /* this */
            iload 1 /* attempts */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setReconnectAttempts:(I)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // int attempts
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  attempts  I
    MethodParameters:
          Name  Flags
      attempts  

  public io.vertx.pgclient.PgConnectOptions setHostnameVerificationAlgorithm(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.lang.String hostnameVerificationAlgorithm
         0: .line 364
            aload 0 /* this */
            aload 1 /* hostnameVerificationAlgorithm */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setHostnameVerificationAlgorithm:(Ljava/lang/String;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.lang.String hostnameVerificationAlgorithm
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot                           Name  Signature
            0    1     0                           this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  hostnameVerificationAlgorithm  Ljava/lang/String;
    MethodParameters:
                               Name  Flags
      hostnameVerificationAlgorithm  

  public io.vertx.pgclient.PgConnectOptions setLogActivity(boolean);
    descriptor: (Z)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // boolean logEnabled
         0: .line 369
            aload 0 /* this */
            iload 1 /* logEnabled */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setLogActivity:(Z)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // boolean logEnabled
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  logEnabled  Z
    MethodParameters:
            Name  Flags
      logEnabled  

  public io.vertx.pgclient.PgConnectOptions setReconnectInterval(long);
    descriptor: (J)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // long interval
         0: .line 374
            aload 0 /* this */
            lload 1 /* interval */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setReconnectInterval:(J)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // long interval
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  interval  J
    MethodParameters:
          Name  Flags
      interval  

  public io.vertx.pgclient.PgConnectOptions setProxyOptions(io.vertx.core.net.ProxyOptions);
    descriptor: (Lio/vertx/core/net/ProxyOptions;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.net.ProxyOptions proxyOptions
         0: .line 379
            aload 0 /* this */
            aload 1 /* proxyOptions */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setProxyOptions:(Lio/vertx/core/net/ProxyOptions;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // io.vertx.core.net.ProxyOptions proxyOptions
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  proxyOptions  Lio/vertx/core/net/ProxyOptions;
    MethodParameters:
              Name  Flags
      proxyOptions  

  public io.vertx.pgclient.PgConnectOptions setLocalAddress(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.lang.String localAddress
         0: .line 384
            aload 0 /* this */
            aload 1 /* localAddress */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setLocalAddress:(Ljava/lang/String;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.lang.String localAddress
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  localAddress  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      localAddress  

  public io.vertx.pgclient.PgConnectOptions setUseAlpn(boolean);
    descriptor: (Z)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // boolean useAlpn
         0: .line 389
            aload 0 /* this */
            iload 1 /* useAlpn */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setUseAlpn:(Z)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // boolean useAlpn
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  useAlpn  Z
    MethodParameters:
         Name  Flags
      useAlpn  

  public io.vertx.pgclient.PgConnectOptions setSslEngineOptions(io.vertx.core.net.SSLEngineOptions);
    descriptor: (Lio/vertx/core/net/SSLEngineOptions;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.net.SSLEngineOptions sslEngineOptions
         0: .line 394
            aload 0 /* this */
            aload 1 /* sslEngineOptions */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setSslEngineOptions:(Lio/vertx/core/net/SSLEngineOptions;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // io.vertx.core.net.SSLEngineOptions sslEngineOptions
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  sslEngineOptions  Lio/vertx/core/net/SSLEngineOptions;
    MethodParameters:
                  Name  Flags
      sslEngineOptions  

  public io.vertx.pgclient.PgConnectOptions setJdkSslEngineOptions(io.vertx.core.net.JdkSSLEngineOptions);
    descriptor: (Lio/vertx/core/net/JdkSSLEngineOptions;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.net.JdkSSLEngineOptions sslEngineOptions
         0: .line 399
            aload 0 /* this */
            aload 1 /* sslEngineOptions */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setJdkSslEngineOptions:(Lio/vertx/core/net/JdkSSLEngineOptions;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // io.vertx.core.net.JdkSSLEngineOptions sslEngineOptions
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  sslEngineOptions  Lio/vertx/core/net/JdkSSLEngineOptions;
    MethodParameters:
                  Name  Flags
      sslEngineOptions  

  public io.vertx.pgclient.PgConnectOptions setOpenSslEngineOptions(io.vertx.core.net.OpenSSLEngineOptions);
    descriptor: (Lio/vertx/core/net/OpenSSLEngineOptions;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.net.OpenSSLEngineOptions sslEngineOptions
         0: .line 404
            aload 0 /* this */
            aload 1 /* sslEngineOptions */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setOpenSslEngineOptions:(Lio/vertx/core/net/OpenSSLEngineOptions;)Lio/vertx/core/net/ClientOptionsBase;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // io.vertx.core.net.OpenSSLEngineOptions sslEngineOptions
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  sslEngineOptions  Lio/vertx/core/net/OpenSSLEngineOptions;
    MethodParameters:
                  Name  Flags
      sslEngineOptions  

  public io.vertx.pgclient.PgConnectOptions setReusePort(boolean);
    descriptor: (Z)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // boolean reusePort
         0: .line 409
            aload 0 /* this */
            iload 1 /* reusePort */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setReusePort:(Z)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // boolean reusePort
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  reusePort  Z
    MethodParameters:
           Name  Flags
      reusePort  

  public io.vertx.pgclient.PgConnectOptions setTcpFastOpen(boolean);
    descriptor: (Z)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // boolean tcpFastOpen
         0: .line 414
            aload 0 /* this */
            iload 1 /* tcpFastOpen */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setTcpFastOpen:(Z)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // boolean tcpFastOpen
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  tcpFastOpen  Z
    MethodParameters:
             Name  Flags
      tcpFastOpen  

  public io.vertx.pgclient.PgConnectOptions setTcpCork(boolean);
    descriptor: (Z)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // boolean tcpCork
         0: .line 419
            aload 0 /* this */
            iload 1 /* tcpCork */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setTcpCork:(Z)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // boolean tcpCork
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  tcpCork  Z
    MethodParameters:
         Name  Flags
      tcpCork  

  public io.vertx.pgclient.PgConnectOptions setTcpQuickAck(boolean);
    descriptor: (Z)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // boolean tcpQuickAck
         0: .line 424
            aload 0 /* this */
            iload 1 /* tcpQuickAck */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setTcpQuickAck:(Z)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // boolean tcpQuickAck
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  tcpQuickAck  Z
    MethodParameters:
             Name  Flags
      tcpQuickAck  

  public io.vertx.pgclient.PgConnectOptions setEnabledSecureTransportProtocols(java.util.Set<java.lang.String>);
    descriptor: (Ljava/util/Set;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.util.Set enabledSecureTransportProtocols
         0: .line 429
            aload 0 /* this */
            aload 1 /* enabledSecureTransportProtocols */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setEnabledSecureTransportProtocols:(Ljava/util/Set;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.util.Set enabledSecureTransportProtocols
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot                             Name  Signature
            0    1     0                             this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  enabledSecureTransportProtocols  Ljava/util/Set<Ljava/lang/String;>;
    Signature: (Ljava/util/Set<Ljava/lang/String;>;)Lio/vertx/pgclient/PgConnectOptions;
    MethodParameters:
                                 Name  Flags
      enabledSecureTransportProtocols  

  public io.vertx.pgclient.PgConnectOptions setSslHandshakeTimeout(long);
    descriptor: (J)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // long sslHandshakeTimeout
         0: .line 434
            aload 0 /* this */
            lload 1 /* sslHandshakeTimeout */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setSslHandshakeTimeout:(J)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // long sslHandshakeTimeout
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    1     0                 this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  sslHandshakeTimeout  J
    MethodParameters:
                     Name  Flags
      sslHandshakeTimeout  

  public io.vertx.pgclient.PgConnectOptions setSslHandshakeTimeoutUnit(java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/TimeUnit;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // java.util.concurrent.TimeUnit sslHandshakeTimeoutUnit
         0: .line 439
            aload 0 /* this */
            aload 1 /* sslHandshakeTimeoutUnit */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setSslHandshakeTimeoutUnit:(Ljava/util/concurrent/TimeUnit;)Lio/vertx/core/net/NetClientOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // java.util.concurrent.TimeUnit sslHandshakeTimeoutUnit
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    1     0                     this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  sslHandshakeTimeoutUnit  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
                         Name  Flags
      sslHandshakeTimeoutUnit  

  public io.vertx.pgclient.PgConnectOptions setTracingPolicy(io.vertx.core.tracing.TracingPolicy);
    descriptor: (Lio/vertx/core/tracing/TracingPolicy;)Lio/vertx/pgclient/PgConnectOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.pgclient.PgConnectOptions this
        start local 1 // io.vertx.core.tracing.TracingPolicy tracingPolicy
         0: .line 444
            aload 0 /* this */
            aload 1 /* tracingPolicy */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.setTracingPolicy:(Lio/vertx/core/tracing/TracingPolicy;)Lio/vertx/sqlclient/SqlConnectOptions;
            checkcast io.vertx.pgclient.PgConnectOptions
            areturn
        end local 1 // io.vertx.core.tracing.TracingPolicy tracingPolicy
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lio/vertx/pgclient/PgConnectOptions;
            0    1     1  tracingPolicy  Lio/vertx/core/tracing/TracingPolicy;
    MethodParameters:
               Name  Flags
      tracingPolicy  

  protected void init();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.pgclient.PgConnectOptions this
         0: .line 451
            aload 0 /* this */
            ldc "localhost"
            invokevirtual io.vertx.pgclient.PgConnectOptions.setHost:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            pop
         1: .line 452
            aload 0 /* this */
            getstatic io.vertx.pgclient.PgConnectOptions.DEFAULT_PORT:I
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPort:(I)Lio/vertx/pgclient/PgConnectOptions;
            pop
         2: .line 453
            aload 0 /* this */
            ldc "user"
            invokevirtual io.vertx.pgclient.PgConnectOptions.setUser:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            pop
         3: .line 454
            aload 0 /* this */
            ldc "pass"
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPassword:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            pop
         4: .line 455
            aload 0 /* this */
            ldc "db"
            invokevirtual io.vertx.pgclient.PgConnectOptions.setDatabase:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            pop
         5: .line 456
            aload 0 /* this */
            new java.util.HashMap
            dup
            getstatic io.vertx.pgclient.PgConnectOptions.DEFAULT_PROPERTIES:Ljava/util/Map;
            invokespecial java.util.HashMap.<init>:(Ljava/util/Map;)V
            invokevirtual io.vertx.pgclient.PgConnectOptions.setProperties:(Ljava/util/Map;)Lio/vertx/pgclient/PgConnectOptions;
            pop
         6: .line 457
            return
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/vertx/pgclient/PgConnectOptions;

  public io.vertx.core.json.JsonObject toJson();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.pgclient.PgConnectOptions this
         0: .line 461
            aload 0 /* this */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.toJson:()Lio/vertx/core/json/JsonObject;
            astore 1 /* json */
        start local 1 // io.vertx.core.json.JsonObject json
         1: .line 462
            aload 0 /* this */
            aload 1 /* json */
            invokestatic io.vertx.pgclient.PgConnectOptionsConverter.toJson:(Lio/vertx/pgclient/PgConnectOptions;Lio/vertx/core/json/JsonObject;)V
         2: .line 463
            aload 1 /* json */
            areturn
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/pgclient/PgConnectOptions;
            1    3     1  json  Lio/vertx/core/json/JsonObject;

  public io.vertx.core.net.SocketAddress getSocketAddress();
    descriptor: ()Lio/vertx/core/net/SocketAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.pgclient.PgConnectOptions this
         0: .line 468
            aload 0 /* this */
            invokevirtual io.vertx.pgclient.PgConnectOptions.isUsingDomainSocket:()Z
            ifne 2
         1: .line 469
            aload 0 /* this */
            invokespecial io.vertx.sqlclient.SqlConnectOptions.getSocketAddress:()Lio/vertx/core/net/SocketAddress;
            areturn
         2: .line 471
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual io.vertx.pgclient.PgConnectOptions.getHost:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "/.s.PGSQL."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual io.vertx.pgclient.PgConnectOptions.getPort:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic io.vertx.core.net.SocketAddress.domainSocketAddress:(Ljava/lang/String;)Lio/vertx/core/net/SocketAddress;
            areturn
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/pgclient/PgConnectOptions;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()

  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.pgclient.PgConnectOptions this
        start local 1 // java.lang.Object o
         0: .line 477
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 478
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            instanceof io.vertx.pgclient.PgConnectOptions
            ifne 2
            iconst_0
            ireturn
         2: .line 479
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* o */
            invokespecial java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 3
            iconst_0
            ireturn
         3: .line 481
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.vertx.pgclient.PgConnectOptions
            astore 2 /* that */
        start local 2 // io.vertx.pgclient.PgConnectOptions that
         4: .line 483
            aload 0 /* this */
            getfield io.vertx.pgclient.PgConnectOptions.pipeliningLimit:I
            aload 2 /* that */
            getfield io.vertx.pgclient.PgConnectOptions.pipeliningLimit:I
            if_icmpeq 5
            iconst_0
            ireturn
         5: .line 484
      StackMap locals: io.vertx.pgclient.PgConnectOptions
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.pgclient.PgConnectOptions.sslMode:Lio/vertx/pgclient/SslMode;
            aload 2 /* that */
            getfield io.vertx.pgclient.PgConnectOptions.sslMode:Lio/vertx/pgclient/SslMode;
            if_acmpeq 6
            iconst_0
            ireturn
         6: .line 486
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // io.vertx.pgclient.PgConnectOptions that
        end local 1 // java.lang.Object o
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/vertx/pgclient/PgConnectOptions;
            0    7     1     o  Ljava/lang/Object;
            4    7     2  that  Lio/vertx/pgclient/PgConnectOptions;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.pgclient.PgConnectOptions this
         0: .line 491
            aload 0 /* this */
            invokespecial java.lang.Object.hashCode:()I
            istore 1 /* result */
        start local 1 // int result
         1: .line 492
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.pgclient.PgConnectOptions.pipeliningLimit:I
            iadd
            istore 1 /* result */
         2: .line 493
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.pgclient.PgConnectOptions.sslMode:Lio/vertx/pgclient/SslMode;
            invokevirtual io.vertx.pgclient.SslMode.hashCode:()I
            iadd
            istore 1 /* result */
         3: .line 494
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/vertx/pgclient/PgConnectOptions;
            1    4     1  result  I

  public boolean isUsingDomainSocket();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.pgclient.PgConnectOptions this
         0: .line 498
            aload 0 /* this */
            invokevirtual io.vertx.pgclient.PgConnectOptions.getHost:()Ljava/lang/String;
            ldc "/"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ireturn
        end local 0 // io.vertx.pgclient.PgConnectOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/pgclient/PgConnectOptions;

  public io.vertx.sqlclient.SqlConnectOptions setHost(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/sqlclient/SqlConnectOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setHost:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setKeyCertOptions(io.vertx.core.net.KeyCertOptions);
    descriptor: (Lio/vertx/core/net/KeyCertOptions;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setKeyCertOptions:(Lio/vertx/core/net/KeyCertOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setKeyCertOptions(io.vertx.core.net.KeyCertOptions);
    descriptor: (Lio/vertx/core/net/KeyCertOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setKeyCertOptions:(Lio/vertx/core/net/KeyCertOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setKeyCertOptions(io.vertx.core.net.KeyCertOptions);
    descriptor: (Lio/vertx/core/net/KeyCertOptions;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setKeyCertOptions:(Lio/vertx/core/net/KeyCertOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setOpenSslEngineOptions(io.vertx.core.net.OpenSSLEngineOptions);
    descriptor: (Lio/vertx/core/net/OpenSSLEngineOptions;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setOpenSslEngineOptions:(Lio/vertx/core/net/OpenSSLEngineOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setOpenSslEngineOptions(io.vertx.core.net.OpenSSLEngineOptions);
    descriptor: (Lio/vertx/core/net/OpenSSLEngineOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setOpenSslEngineOptions:(Lio/vertx/core/net/OpenSSLEngineOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setSendBufferSize(int);
    descriptor: (I)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSendBufferSize:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetworkOptions setSendBufferSize(int);
    descriptor: (I)Lio/vertx/core/net/NetworkOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSendBufferSize:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setSendBufferSize(int);
    descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSendBufferSize:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setSendBufferSize(int);
    descriptor: (I)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSendBufferSize:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setSoLinger(int);
    descriptor: (I)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSoLinger:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setSoLinger(int);
    descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSoLinger:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setSoLinger(int);
    descriptor: (I)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSoLinger:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnectOptions addProperty(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lio/vertx/sqlclient/SqlConnectOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual io.vertx.pgclient.PgConnectOptions.addProperty:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setReuseAddress(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setReuseAddress:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetworkOptions setReuseAddress(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetworkOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setReuseAddress:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setReuseAddress(boolean);
    descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setReuseAddress:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setReuseAddress(boolean);
    descriptor: (Z)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setReuseAddress:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setPfxTrustOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPfxTrustOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setPfxTrustOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPfxTrustOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setPfxTrustOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPfxTrustOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions addEnabledCipherSuite(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.addEnabledCipherSuite:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions addEnabledCipherSuite(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.addEnabledCipherSuite:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase addEnabledCipherSuite(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.addEnabledCipherSuite:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setTcpFastOpen(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpFastOpen:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setTcpFastOpen(boolean);
    descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpFastOpen:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setTcpFastOpen(boolean);
    descriptor: (Z)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpFastOpen:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setProxyOptions(io.vertx.core.net.ProxyOptions);
    descriptor: (Lio/vertx/core/net/ProxyOptions;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setProxyOptions:(Lio/vertx/core/net/ProxyOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setProxyOptions(io.vertx.core.net.ProxyOptions);
    descriptor: (Lio/vertx/core/net/ProxyOptions;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setProxyOptions:(Lio/vertx/core/net/ProxyOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setUseAlpn(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setUseAlpn:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setUseAlpn(boolean);
    descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setUseAlpn:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setUseAlpn(boolean);
    descriptor: (Z)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setUseAlpn:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setTcpKeepAlive(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpKeepAlive:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setTcpKeepAlive(boolean);
    descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpKeepAlive:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setTcpKeepAlive(boolean);
    descriptor: (Z)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpKeepAlive:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setSslHandshakeTimeoutUnit(java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/TimeUnit;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSslHandshakeTimeoutUnit:(Ljava/util/concurrent/TimeUnit;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setSslHandshakeTimeoutUnit(java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/TimeUnit;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSslHandshakeTimeoutUnit:(Ljava/util/concurrent/TimeUnit;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnectOptions setPassword(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/sqlclient/SqlConnectOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPassword:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setLogActivity(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setLogActivity:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetworkOptions setLogActivity(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetworkOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setLogActivity:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setLogActivity(boolean);
    descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setLogActivity:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setLogActivity(boolean);
    descriptor: (Z)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setLogActivity:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnectOptions setTracingPolicy(io.vertx.core.tracing.TracingPolicy);
    descriptor: (Lio/vertx/core/tracing/TracingPolicy;)Lio/vertx/sqlclient/SqlConnectOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTracingPolicy:(Lio/vertx/core/tracing/TracingPolicy;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setIdleTimeoutUnit(java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/TimeUnit;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setIdleTimeoutUnit:(Ljava/util/concurrent/TimeUnit;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setIdleTimeoutUnit(java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/TimeUnit;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setIdleTimeoutUnit:(Ljava/util/concurrent/TimeUnit;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setIdleTimeoutUnit(java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/TimeUnit;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setIdleTimeoutUnit:(Ljava/util/concurrent/TimeUnit;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setIdleTimeout(int);
    descriptor: (I)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setIdleTimeout:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setIdleTimeout(int);
    descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setIdleTimeout:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setIdleTimeout(int);
    descriptor: (I)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setIdleTimeout:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setPemKeyCertOptions(io.vertx.core.net.PemKeyCertOptions);
    descriptor: (Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPemKeyCertOptions:(Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setPemKeyCertOptions(io.vertx.core.net.PemKeyCertOptions);
    descriptor: (Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPemKeyCertOptions:(Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setPemKeyCertOptions(io.vertx.core.net.PemKeyCertOptions);
    descriptor: (Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPemKeyCertOptions:(Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnectOptions setDatabase(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/sqlclient/SqlConnectOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setDatabase:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setTrafficClass(int);
    descriptor: (I)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTrafficClass:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetworkOptions setTrafficClass(int);
    descriptor: (I)Lio/vertx/core/net/NetworkOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTrafficClass:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setTrafficClass(int);
    descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTrafficClass:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setTrafficClass(int);
    descriptor: (I)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTrafficClass:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setTcpQuickAck(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpQuickAck:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setTcpQuickAck(boolean);
    descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpQuickAck:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setTcpQuickAck(boolean);
    descriptor: (Z)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpQuickAck:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setSslEngineOptions(io.vertx.core.net.SSLEngineOptions);
    descriptor: (Lio/vertx/core/net/SSLEngineOptions;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSslEngineOptions:(Lio/vertx/core/net/SSLEngineOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setSslEngineOptions(io.vertx.core.net.SSLEngineOptions);
    descriptor: (Lio/vertx/core/net/SSLEngineOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSslEngineOptions:(Lio/vertx/core/net/SSLEngineOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setSslEngineOptions(io.vertx.core.net.SSLEngineOptions);
    descriptor: (Lio/vertx/core/net/SSLEngineOptions;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSslEngineOptions:(Lio/vertx/core/net/SSLEngineOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnectOptions setUser(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/sqlclient/SqlConnectOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setUser:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setLocalAddress(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setLocalAddress:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setLocalAddress(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setLocalAddress:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setEnabledSecureTransportProtocols(java.util.Set);
    descriptor: (Ljava/util/Set;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setEnabledSecureTransportProtocols:(Ljava/util/Set;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setEnabledSecureTransportProtocols(java.util.Set);
    descriptor: (Ljava/util/Set;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setEnabledSecureTransportProtocols:(Ljava/util/Set;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnectOptions setPreparedStatementCacheSqlLimit(int);
    descriptor: (I)Lio/vertx/sqlclient/SqlConnectOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPreparedStatementCacheSqlLimit:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setMetricsName(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setMetricsName:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setMetricsName(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setMetricsName:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnectOptions setPreparedStatementCacheSqlFilter(java.util.function.Predicate);
    descriptor: (Ljava/util/function/Predicate;)Lio/vertx/sqlclient/SqlConnectOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPreparedStatementCacheSqlFilter:(Ljava/util/function/Predicate;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setReusePort(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setReusePort:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetworkOptions setReusePort(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetworkOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setReusePort:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setReusePort(boolean);
    descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setReusePort:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setReusePort(boolean);
    descriptor: (Z)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setReusePort:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnectOptions setPreparedStatementCacheMaxSize(int);
    descriptor: (I)Lio/vertx/sqlclient/SqlConnectOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPreparedStatementCacheMaxSize:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setTrustAll(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTrustAll:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setTrustAll(boolean);
    descriptor: (Z)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTrustAll:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setReconnectAttempts(int);
    descriptor: (I)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setReconnectAttempts:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setHostnameVerificationAlgorithm(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setHostnameVerificationAlgorithm:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnectOptions setProperties(java.util.Map);
    descriptor: (Ljava/util/Map;)Lio/vertx/sqlclient/SqlConnectOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setProperties:(Ljava/util/Map;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions addCrlPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.addCrlPath:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NullPointerException

  public io.vertx.core.net.TCPSSLOptions addCrlPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.addCrlPath:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NullPointerException

  public io.vertx.core.net.ClientOptionsBase addCrlPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.addCrlPath:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NullPointerException

  public io.vertx.core.net.NetClientOptions setJdkSslEngineOptions(io.vertx.core.net.JdkSSLEngineOptions);
    descriptor: (Lio/vertx/core/net/JdkSSLEngineOptions;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setJdkSslEngineOptions:(Lio/vertx/core/net/JdkSSLEngineOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setJdkSslEngineOptions(io.vertx.core.net.JdkSSLEngineOptions);
    descriptor: (Lio/vertx/core/net/JdkSSLEngineOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setJdkSslEngineOptions:(Lio/vertx/core/net/JdkSSLEngineOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setJdkSslEngineOptions(io.vertx.core.net.JdkSSLEngineOptions);
    descriptor: (Lio/vertx/core/net/JdkSSLEngineOptions;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setJdkSslEngineOptions:(Lio/vertx/core/net/JdkSSLEngineOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setPfxKeyCertOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPfxKeyCertOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setPfxKeyCertOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPfxKeyCertOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setPfxKeyCertOptions(io.vertx.core.net.PfxOptions);
    descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPfxKeyCertOptions:(Lio/vertx/core/net/PfxOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnectOptions setPort(int);
    descriptor: (I)Lio/vertx/sqlclient/SqlConnectOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPort:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setReceiveBufferSize(int);
    descriptor: (I)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setReceiveBufferSize:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetworkOptions setReceiveBufferSize(int);
    descriptor: (I)Lio/vertx/core/net/NetworkOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setReceiveBufferSize:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setReceiveBufferSize(int);
    descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setReceiveBufferSize:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setReceiveBufferSize(int);
    descriptor: (I)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setReceiveBufferSize:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setTrustOptions(io.vertx.core.net.TrustOptions);
    descriptor: (Lio/vertx/core/net/TrustOptions;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTrustOptions:(Lio/vertx/core/net/TrustOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setTrustOptions(io.vertx.core.net.TrustOptions);
    descriptor: (Lio/vertx/core/net/TrustOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTrustOptions:(Lio/vertx/core/net/TrustOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setTrustOptions(io.vertx.core.net.TrustOptions);
    descriptor: (Lio/vertx/core/net/TrustOptions;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTrustOptions:(Lio/vertx/core/net/TrustOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setTrustStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTrustStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setTrustStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTrustStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setTrustStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTrustStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setKeyStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setKeyStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setKeyStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setKeyStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setKeyStoreOptions(io.vertx.core.net.JksOptions);
    descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setKeyStoreOptions:(Lio/vertx/core/net/JksOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setSslHandshakeTimeout(long);
    descriptor: (J)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSslHandshakeTimeout:(J)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setSslHandshakeTimeout(long);
    descriptor: (J)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSslHandshakeTimeout:(J)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setTcpCork(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpCork:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setTcpCork(boolean);
    descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpCork:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setTcpCork(boolean);
    descriptor: (Z)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpCork:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setPemTrustOptions(io.vertx.core.net.PemTrustOptions);
    descriptor: (Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPemTrustOptions:(Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setPemTrustOptions(io.vertx.core.net.PemTrustOptions);
    descriptor: (Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPemTrustOptions:(Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setPemTrustOptions(io.vertx.core.net.PemTrustOptions);
    descriptor: (Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setPemTrustOptions:(Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setConnectTimeout(int);
    descriptor: (I)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setConnectTimeout:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setConnectTimeout(int);
    descriptor: (I)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setConnectTimeout:(I)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setTcpNoDelay(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpNoDelay:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setTcpNoDelay(boolean);
    descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpNoDelay:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setTcpNoDelay(boolean);
    descriptor: (Z)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setTcpNoDelay:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.sqlclient.SqlConnectOptions setCachePreparedStatements(boolean);
    descriptor: (Z)Lio/vertx/sqlclient/SqlConnectOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setCachePreparedStatements:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setReconnectInterval(long);
    descriptor: (J)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setReconnectInterval:(J)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions addEnabledSecureTransportProtocol(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.addEnabledSecureTransportProtocol:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions addEnabledSecureTransportProtocol(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.addEnabledSecureTransportProtocol:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase addEnabledSecureTransportProtocol(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.addEnabledSecureTransportProtocol:(Ljava/lang/String;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions setSsl(boolean);
    descriptor: (Z)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSsl:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.TCPSSLOptions setSsl(boolean);
    descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSsl:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.ClientOptionsBase setSsl(boolean);
    descriptor: (Z)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.setSsl:(Z)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.net.NetClientOptions addCrlValue(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/net/NetClientOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.addCrlValue:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NullPointerException

  public io.vertx.core.net.TCPSSLOptions addCrlValue(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/net/TCPSSLOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.addCrlValue:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NullPointerException

  public io.vertx.core.net.ClientOptionsBase addCrlValue(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/net/ClientOptionsBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.pgclient.PgConnectOptions.addCrlValue:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/pgclient/PgConnectOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NullPointerException
}
SourceFile: "PgConnectOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true)