public class io.vertx.core.net.impl.SocketAddressImpl implements io.vertx.core.net.SocketAddress
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.net.impl.SocketAddressImpl
  super_class: java.lang.Object
{
  private final java.lang.String host;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final java.net.InetAddress ipAddress;
    descriptor: Ljava/net/InetAddress;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  public void <init>(java.net.InetSocketAddress);
    descriptor: (Ljava/net/InetSocketAddress;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.core.net.impl.SocketAddressImpl this
        start local 1 // java.net.InetSocketAddress address
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            aload 1 /* address */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            iconst_0
            ldc 65535
            ldc "port p must be in range 0 <= p <= 65535"
            invokestatic io.vertx.core.impl.Arguments.requireInRange:(IIILjava/lang/String;)V
         2: .line 38
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.net.impl.SocketAddressImpl.path:Ljava/lang/String;
         3: .line 39
            aload 0 /* this */
            aload 1 /* address */
            invokevirtual java.net.InetSocketAddress.getPort:()I
            putfield io.vertx.core.net.impl.SocketAddressImpl.port:I
         4: .line 40
            aload 0 /* this */
            aload 1 /* address */
            invokevirtual java.net.InetSocketAddress.getHostString:()Ljava/lang/String;
            putfield io.vertx.core.net.impl.SocketAddressImpl.host:Ljava/lang/String;
         5: .line 41
            aload 1 /* address */
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 9
         6: .line 42
            aload 0 /* this */
            aload 1 /* address */
            invokevirtual java.net.InetSocketAddress.getHostName:()Ljava/lang/String;
            putfield io.vertx.core.net.impl.SocketAddressImpl.hostName:Ljava/lang/String;
         7: .line 43
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.net.impl.SocketAddressImpl.ipAddress:Ljava/net/InetAddress;
         8: .line 44
            goto 14
         9: .line 45
      StackMap locals: io.vertx.core.net.impl.SocketAddressImpl java.net.InetSocketAddress
      StackMap stack:
            aload 1 /* address */
            invokevirtual java.net.InetSocketAddress.getHostString:()Ljava/lang/String;
            astore 2 /* host */
        start local 2 // java.lang.String host
        10: .line 46
            aload 2 /* host */
            invokestatic io.netty.util.NetUtil.isValidIpV4Address:(Ljava/lang/String;)Z
            ifne 11
            aload 2 /* host */
            invokestatic io.netty.util.NetUtil.isValidIpV6Address:(Ljava/lang/String;)Z
            ifeq 12
        11: .line 47
      StackMap locals: java.lang.String
      StackMap stack:
            aconst_null
            astore 2 /* host */
        12: .line 49
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* host */
            putfield io.vertx.core.net.impl.SocketAddressImpl.hostName:Ljava/lang/String;
        13: .line 50
            aload 0 /* this */
            aload 1 /* address */
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            putfield io.vertx.core.net.impl.SocketAddressImpl.ipAddress:Ljava/net/InetAddress;
        end local 2 // java.lang.String host
        14: .line 52
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.net.InetSocketAddress address
        end local 0 // io.vertx.core.net.impl.SocketAddressImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   15     0     this  Lio/vertx/core/net/impl/SocketAddressImpl;
            0   15     1  address  Ljava/net/InetSocketAddress;
           10   14     2     host  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      address  

  public void <init>(int, java.lang.String);
    descriptor: (ILjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // io.vertx.core.net.impl.SocketAddressImpl this
        start local 1 // int port
        start local 2 // java.lang.String host
         0: .line 54
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 55
            iload 1 /* port */
            iconst_0
            ldc 65535
            ldc "port p must be in range 0 <= p <= 65535"
            invokestatic io.vertx.core.impl.Arguments.requireInRange:(IIILjava/lang/String;)V
         2: .line 56
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.net.impl.SocketAddressImpl.path:Ljava/lang/String;
         3: .line 57
            aload 0 /* this */
            iload 1 /* port */
            putfield io.vertx.core.net.impl.SocketAddressImpl.port:I
         4: .line 58
            aload 2 /* host */
            invokestatic io.netty.util.NetUtil.isValidIpV4Address:(Ljava/lang/String;)Z
            ifeq 13
         5: .line 61
            aload 2 /* host */
            invokestatic io.netty.util.NetUtil.createByteArrayFromIpAddressString:(Ljava/lang/String;)[B
            invokestatic java.net.InetAddress.getByAddress:([B)Ljava/net/InetAddress;
            astore 3 /* ip */
        start local 3 // java.net.InetAddress ip
         6: .line 62
            goto 9
        end local 3 // java.net.InetAddress ip
      StackMap locals: io.vertx.core.net.impl.SocketAddressImpl int java.lang.String
      StackMap stack: java.net.UnknownHostException
         7: astore 4 /* e */
        start local 4 // java.net.UnknownHostException e
         8: .line 63
            new io.vertx.core.VertxException
            dup
            aload 4 /* e */
            invokespecial io.vertx.core.VertxException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 4 // java.net.UnknownHostException e
        start local 3 // java.net.InetAddress ip
         9: .line 65
      StackMap locals: java.net.InetAddress
      StackMap stack:
            aload 0 /* this */
            aload 2 /* host */
            putfield io.vertx.core.net.impl.SocketAddressImpl.host:Ljava/lang/String;
        10: .line 66
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.net.impl.SocketAddressImpl.hostName:Ljava/lang/String;
        11: .line 67
            aload 0 /* this */
            aload 3 /* ip */
            putfield io.vertx.core.net.impl.SocketAddressImpl.ipAddress:Ljava/net/InetAddress;
        end local 3 // java.net.InetAddress ip
        12: .line 68
            goto 25
      StackMap locals:
      StackMap stack:
        13: aload 2 /* host */
            invokestatic io.netty.util.NetUtil.isValidIpV6Address:(Ljava/lang/String;)Z
            ifeq 19
        14: .line 69
            aload 2 /* host */
            invokestatic io.netty.util.NetUtil.getByName:(Ljava/lang/CharSequence;)Ljava/net/Inet6Address;
            astore 3 /* ip */
        start local 3 // java.net.Inet6Address ip
        15: .line 70
            aload 0 /* this */
            aload 2 /* host */
            putfield io.vertx.core.net.impl.SocketAddressImpl.host:Ljava/lang/String;
        16: .line 71
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.net.impl.SocketAddressImpl.hostName:Ljava/lang/String;
        17: .line 72
            aload 0 /* this */
            aload 3 /* ip */
            putfield io.vertx.core.net.impl.SocketAddressImpl.ipAddress:Ljava/net/InetAddress;
        end local 3 // java.net.Inet6Address ip
        18: .line 73
            goto 25
        19: .line 74
      StackMap locals:
      StackMap stack:
            aload 2 /* host */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 20
            iconst_0
            goto 21
      StackMap locals:
      StackMap stack:
        20: iconst_1
      StackMap locals:
      StackMap stack: int
        21: ldc "host name must not be empty"
            invokestatic io.vertx.core.impl.Arguments.require:(ZLjava/lang/String;)V
        22: .line 75
            aload 0 /* this */
            aload 2 /* host */
            putfield io.vertx.core.net.impl.SocketAddressImpl.host:Ljava/lang/String;
        23: .line 76
            aload 0 /* this */
            aload 2 /* host */
            putfield io.vertx.core.net.impl.SocketAddressImpl.hostName:Ljava/lang/String;
        24: .line 77
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.net.impl.SocketAddressImpl.ipAddress:Ljava/net/InetAddress;
        25: .line 79
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String host
        end local 1 // int port
        end local 0 // io.vertx.core.net.impl.SocketAddressImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   26     0  this  Lio/vertx/core/net/impl/SocketAddressImpl;
            0   26     1  port  I
            0   26     2  host  Ljava/lang/String;
            6    7     3    ip  Ljava/net/InetAddress;
            9   12     3    ip  Ljava/net/InetAddress;
            8    9     4     e  Ljava/net/UnknownHostException;
           15   18     3    ip  Ljava/net/Inet6Address;
      Exception table:
        from    to  target  type
           5     6       7  Class java.net.UnknownHostException
    MethodParameters:
      Name  Flags
      port  
      host  

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.net.impl.SocketAddressImpl this
        start local 1 // java.lang.String path
         0: .line 81
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 82
            aload 1 /* path */
            ldc "domain socket path must be non null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 83
            aload 1 /* path */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 3
            iconst_0
            goto 4
      StackMap locals: io.vertx.core.net.impl.SocketAddressImpl java.lang.String
      StackMap stack:
         3: iconst_1
      StackMap locals:
      StackMap stack: int
         4: ldc "domain socket must not be empty"
            invokestatic io.vertx.core.impl.Arguments.require:(ZLjava/lang/String;)V
         5: .line 84
            aload 0 /* this */
            iconst_m1
            putfield io.vertx.core.net.impl.SocketAddressImpl.port:I
         6: .line 85
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.net.impl.SocketAddressImpl.host:Ljava/lang/String;
         7: .line 86
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.net.impl.SocketAddressImpl.ipAddress:Ljava/net/InetAddress;
         8: .line 87
            aload 0 /* this */
            aconst_null
            putfield io.vertx.core.net.impl.SocketAddressImpl.hostName:Ljava/lang/String;
         9: .line 88
            aload 0 /* this */
            aload 1 /* path */
            putfield io.vertx.core.net.impl.SocketAddressImpl.path:Ljava/lang/String;
        10: .line 89
            return
        end local 1 // java.lang.String path
        end local 0 // io.vertx.core.net.impl.SocketAddressImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lio/vertx/core/net/impl/SocketAddressImpl;
            0   11     1  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  

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

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

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

  public java.lang.String hostAddress();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.SocketAddressImpl this
         0: .line 107
            aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.ipAddress:Ljava/net/InetAddress;
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.ipAddress:Ljava/net/InetAddress;
            invokevirtual java.net.InetAddress.getHostAddress:()Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
         2: areturn
        end local 0 // io.vertx.core.net.impl.SocketAddressImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/net/impl/SocketAddressImpl;

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

  public boolean isInetSocket();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.SocketAddressImpl this
         0: .line 116
            aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.path:Ljava/lang/String;
            ifnonnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.vertx.core.net.impl.SocketAddressImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/net/impl/SocketAddressImpl;

  public boolean isDomainSocket();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.SocketAddressImpl this
         0: .line 121
            aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.path:Ljava/lang/String;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.vertx.core.net.impl.SocketAddressImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/net/impl/SocketAddressImpl;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.SocketAddressImpl this
         0: .line 125
            aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.path:Ljava/lang/String;
            ifnonnull 2
         1: .line 126
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.host:Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ":"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.port:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
         2: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.path:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.core.net.impl.SocketAddressImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/net/impl/SocketAddressImpl;

  public java.net.InetAddress ipAddress();
    descriptor: ()Ljava/net/InetAddress;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.SocketAddressImpl this
         0: .line 133
            aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.ipAddress:Ljava/net/InetAddress;
            areturn
        end local 0 // io.vertx.core.net.impl.SocketAddressImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/impl/SocketAddressImpl;

  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.impl.SocketAddressImpl this
        start local 1 // java.lang.Object o
         0: .line 138
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 139
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            ifnull 2
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* o */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 141
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.vertx.core.net.impl.SocketAddressImpl
            astore 2 /* that */
        start local 2 // io.vertx.core.net.impl.SocketAddressImpl that
         4: .line 142
            aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.port:I
            aload 2 /* that */
            getfield io.vertx.core.net.impl.SocketAddressImpl.port:I
            if_icmpne 5
            aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.host:Ljava/lang/String;
            aload 2 /* that */
            getfield io.vertx.core.net.impl.SocketAddressImpl.host:Ljava/lang/String;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
            aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.path:Ljava/lang/String;
            aload 2 /* that */
            getfield io.vertx.core.net.impl.SocketAddressImpl.path:Ljava/lang/String;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
            iconst_1
            ireturn
      StackMap locals: io.vertx.core.net.impl.SocketAddressImpl
      StackMap stack:
         5: iconst_0
            ireturn
        end local 2 // io.vertx.core.net.impl.SocketAddressImpl that
        end local 1 // java.lang.Object o
        end local 0 // io.vertx.core.net.impl.SocketAddressImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/core/net/impl/SocketAddressImpl;
            0    6     1     o  Ljava/lang/Object;
            4    6     2  that  Lio/vertx/core/net/impl/SocketAddressImpl;
    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.impl.SocketAddressImpl this
         0: .line 147
            aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.host:Ljava/lang/String;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            istore 1 /* result */
        start local 1 // int result
         1: .line 148
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.path:Ljava/lang/String;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            iadd
            istore 1 /* result */
         2: .line 149
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.core.net.impl.SocketAddressImpl.port:I
            iadd
            istore 1 /* result */
         3: .line 150
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // io.vertx.core.net.impl.SocketAddressImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/vertx/core/net/impl/SocketAddressImpl;
            1    4     1  result  I
}
SourceFile: "SocketAddressImpl.java"