public class io.vertx.core.net.ProxyOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.net.ProxyOptions
  super_class: java.lang.Object
{
  public static final io.vertx.core.net.ProxyType DEFAULT_TYPE;
    descriptor: Lio/vertx/core/net/ProxyType;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

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

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

  private java.lang.String host;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

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

  private java.lang.String username;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String password;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.net.ProxyType type;
    descriptor: Lio/vertx/core/net/ProxyType;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 30
            getstatic io.vertx.core.net.ProxyType.HTTP:Lio/vertx/core/net/ProxyType;
            putstatic io.vertx.core.net.ProxyOptions.DEFAULT_TYPE:Lio/vertx/core/net/ProxyType;
         1: .line 42
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.net.ProxyOptions this
         0: .line 53
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 54
            aload 0 /* this */
            ldc "localhost"
            putfield io.vertx.core.net.ProxyOptions.host:Ljava/lang/String;
         2: .line 55
            aload 0 /* this */
            sipush 3128
            putfield io.vertx.core.net.ProxyOptions.port:I
         3: .line 56
            aload 0 /* this */
            getstatic io.vertx.core.net.ProxyOptions.DEFAULT_TYPE:Lio/vertx/core/net/ProxyType;
            putfield io.vertx.core.net.ProxyOptions.type:Lio/vertx/core/net/ProxyType;
         4: .line 57
            return
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/net/ProxyOptions;

  public void <init>(io.vertx.core.net.ProxyOptions);
    descriptor: (Lio/vertx/core/net/ProxyOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.net.ProxyOptions this
        start local 1 // io.vertx.core.net.ProxyOptions other
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 65
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.core.net.ProxyOptions.getHost:()Ljava/lang/String;
            putfield io.vertx.core.net.ProxyOptions.host:Ljava/lang/String;
         2: .line 66
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.core.net.ProxyOptions.getPort:()I
            putfield io.vertx.core.net.ProxyOptions.port:I
         3: .line 67
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.core.net.ProxyOptions.getUsername:()Ljava/lang/String;
            putfield io.vertx.core.net.ProxyOptions.username:Ljava/lang/String;
         4: .line 68
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.core.net.ProxyOptions.getPassword:()Ljava/lang/String;
            putfield io.vertx.core.net.ProxyOptions.password:Ljava/lang/String;
         5: .line 69
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual io.vertx.core.net.ProxyOptions.getType:()Lio/vertx/core/net/ProxyType;
            putfield io.vertx.core.net.ProxyOptions.type:Lio/vertx/core/net/ProxyType;
         6: .line 70
            return
        end local 1 // io.vertx.core.net.ProxyOptions other
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lio/vertx/core/net/ProxyOptions;
            0    7     1  other  Lio/vertx/core/net/ProxyOptions;
    MethodParameters:
       Name  Flags
      other  

  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.core.net.ProxyOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 78
            aload 0 /* this */
            invokespecial io.vertx.core.net.ProxyOptions.<init>:()V
         1: .line 79
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.core.net.ProxyOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/core/net/ProxyOptions;)V
         2: .line 80
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/net/ProxyOptions;
            0    3     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

  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.core.net.ProxyOptions this
         0: .line 88
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 1 /* json */
        start local 1 // io.vertx.core.json.JsonObject json
         1: .line 89
            aload 0 /* this */
            aload 1 /* json */
            invokestatic io.vertx.core.net.ProxyOptionsConverter.toJson:(Lio/vertx/core/net/ProxyOptions;Lio/vertx/core/json/JsonObject;)V
         2: .line 90
            aload 1 /* json */
            areturn
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/net/ProxyOptions;
            1    3     1  json  Lio/vertx/core/json/JsonObject;

  public java.lang.String getHost();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.ProxyOptions this
         0: .line 99
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.host:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/ProxyOptions;

  public io.vertx.core.net.ProxyOptions setHost(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/ProxyOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.net.ProxyOptions this
        start local 1 // java.lang.String host
         0: .line 109
            aload 1 /* host */
            ldc "Proxy host may not be null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 110
            aload 0 /* this */
            aload 1 /* host */
            putfield io.vertx.core.net.ProxyOptions.host:Ljava/lang/String;
         2: .line 111
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String host
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/net/ProxyOptions;
            0    3     1  host  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      host  

  public int getPort();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.ProxyOptions this
         0: .line 120
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.port:I
            ireturn
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/ProxyOptions;

  public io.vertx.core.net.ProxyOptions setPort(int);
    descriptor: (I)Lio/vertx/core/net/ProxyOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.core.net.ProxyOptions this
        start local 1 // int port
         0: .line 130
            iload 1 /* port */
            iflt 1
            iload 1 /* port */
            ldc 65535
            if_icmple 2
         1: .line 131
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid proxy port "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* port */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* port */
            putfield io.vertx.core.net.ProxyOptions.port:I
         3: .line 134
            aload 0 /* this */
            areturn
        end local 1 // int port
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/core/net/ProxyOptions;
            0    4     1  port  I
    MethodParameters:
      Name  Flags
      port  

  public java.lang.String getUsername();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.ProxyOptions this
         0: .line 143
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.username:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/ProxyOptions;

  public io.vertx.core.net.ProxyOptions setUsername(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/ProxyOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.net.ProxyOptions this
        start local 1 // java.lang.String username
         0: .line 153
            aload 0 /* this */
            aload 1 /* username */
            putfield io.vertx.core.net.ProxyOptions.username:Ljava/lang/String;
         1: .line 154
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String username
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/vertx/core/net/ProxyOptions;
            0    2     1  username  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      username  

  public java.lang.String getPassword();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.ProxyOptions this
         0: .line 163
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.password:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/ProxyOptions;

  public io.vertx.core.net.ProxyOptions setPassword(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/net/ProxyOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.net.ProxyOptions this
        start local 1 // java.lang.String password
         0: .line 173
            aload 0 /* this */
            aload 1 /* password */
            putfield io.vertx.core.net.ProxyOptions.password:Ljava/lang/String;
         1: .line 174
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String password
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/vertx/core/net/ProxyOptions;
            0    2     1  password  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      password  

  public io.vertx.core.net.ProxyType getType();
    descriptor: ()Lio/vertx/core/net/ProxyType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.ProxyOptions this
         0: .line 185
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.type:Lio/vertx/core/net/ProxyType;
            areturn
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/ProxyOptions;

  public io.vertx.core.net.ProxyOptions setType(io.vertx.core.net.ProxyType);
    descriptor: (Lio/vertx/core/net/ProxyType;)Lio/vertx/core/net/ProxyOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.net.ProxyOptions this
        start local 1 // io.vertx.core.net.ProxyType type
         0: .line 197
            aload 1 /* type */
            ldc "Proxy type may not be null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 198
            aload 0 /* this */
            aload 1 /* type */
            putfield io.vertx.core.net.ProxyOptions.type:Lio/vertx/core/net/ProxyType;
         2: .line 199
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.net.ProxyType type
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/net/ProxyOptions;
            0    3     1  type  Lio/vertx/core/net/ProxyType;
    MethodParameters:
      Name  Flags
      type  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.core.net.ProxyOptions this
        start local 1 // java.lang.Object o
         0: .line 204
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 205
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            instanceof io.vertx.core.net.ClientOptionsBase
            ifne 2
            iconst_0
            ireturn
         2: .line 206
      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 208
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.vertx.core.net.ProxyOptions
            astore 2 /* that */
        start local 2 // io.vertx.core.net.ProxyOptions that
         4: .line 210
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.type:Lio/vertx/core/net/ProxyType;
            aload 2 /* that */
            getfield io.vertx.core.net.ProxyOptions.type:Lio/vertx/core/net/ProxyType;
            if_acmpeq 5
            iconst_0
            ireturn
         5: .line 211
      StackMap locals: io.vertx.core.net.ProxyOptions
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.host:Ljava/lang/String;
            aload 2 /* that */
            getfield io.vertx.core.net.ProxyOptions.host:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 6
            iconst_0
            ireturn
         6: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.port:I
            aload 2 /* that */
            getfield io.vertx.core.net.ProxyOptions.port:I
            if_icmpeq 7
            iconst_0
            ireturn
         7: .line 213
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.password:Ljava/lang/String;
            aload 2 /* that */
            getfield io.vertx.core.net.ProxyOptions.password:Ljava/lang/String;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 8
            iconst_0
            ireturn
         8: .line 214
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.username:Ljava/lang/String;
            aload 2 /* that */
            getfield io.vertx.core.net.ProxyOptions.username:Ljava/lang/String;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 9
            iconst_0
            ireturn
         9: .line 216
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // io.vertx.core.net.ProxyOptions that
        end local 1 // java.lang.Object o
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/vertx/core/net/ProxyOptions;
            0   10     1     o  Ljava/lang/Object;
            4   10     2  that  Lio/vertx/core/net/ProxyOptions;
    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.core.net.ProxyOptions this
         0: .line 221
            aload 0 /* this */
            invokespecial java.lang.Object.hashCode:()I
            istore 1 /* result */
        start local 1 // int result
         1: .line 222
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.type:Lio/vertx/core/net/ProxyType;
            invokevirtual io.vertx.core.net.ProxyType.hashCode:()I
            iadd
            istore 1 /* result */
         2: .line 223
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.host:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            iadd
            istore 1 /* result */
         3: .line 224
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.port:I
            iadd
            istore 1 /* result */
         4: .line 225
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.password:Ljava/lang/String;
            ifnull 5
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.password:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            goto 6
      StackMap locals: io.vertx.core.net.ProxyOptions int
      StackMap stack: int
         5: iconst_0
      StackMap locals: io.vertx.core.net.ProxyOptions int
      StackMap stack: int int
         6: iadd
            istore 1 /* result */
         7: .line 226
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.username:Ljava/lang/String;
            ifnull 8
            aload 0 /* this */
            getfield io.vertx.core.net.ProxyOptions.username:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            goto 9
      StackMap locals:
      StackMap stack: int
         8: iconst_0
      StackMap locals: io.vertx.core.net.ProxyOptions int
      StackMap stack: int int
         9: iadd
            istore 1 /* result */
        10: .line 227
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // io.vertx.core.net.ProxyOptions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lio/vertx/core/net/ProxyOptions;
            1   11     1  result  I
}
SourceFile: "ProxyOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true, publicConverter = false)