public class io.vertx.ext.consul.ServiceEntry
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.consul.ServiceEntry
  super_class: java.lang.Object
{
  private io.vertx.ext.consul.Node node;
    descriptor: Lio/vertx/ext/consul/Node;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.ext.consul.Service service;
    descriptor: Lio/vertx/ext/consul/Service;
    flags: (0x0002) ACC_PRIVATE

  private java.util.List<io.vertx.ext.consul.Check> checks;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lio/vertx/ext/consul/Check;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.consul.ServiceEntry this
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // io.vertx.ext.consul.ServiceEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/consul/ServiceEntry;

  public void <init>(io.vertx.ext.consul.ServiceEntry);
    descriptor: (Lio/vertx/ext/consul/ServiceEntry;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.consul.ServiceEntry this
        start local 1 // io.vertx.ext.consul.ServiceEntry other
         0: .line 49
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 50
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.consul.ServiceEntry.node:Lio/vertx/ext/consul/Node;
            putfield io.vertx.ext.consul.ServiceEntry.node:Lio/vertx/ext/consul/Node;
         2: .line 51
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.consul.ServiceEntry.service:Lio/vertx/ext/consul/Service;
            putfield io.vertx.ext.consul.ServiceEntry.service:Lio/vertx/ext/consul/Service;
         3: .line 52
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.consul.ServiceEntry.checks:Ljava/util/List;
            putfield io.vertx.ext.consul.ServiceEntry.checks:Ljava/util/List;
         4: .line 53
            return
        end local 1 // io.vertx.ext.consul.ServiceEntry other
        end local 0 // io.vertx.ext.consul.ServiceEntry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/vertx/ext/consul/ServiceEntry;
            0    5     1  other  Lio/vertx/ext/consul/ServiceEntry;
    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.ext.consul.ServiceEntry this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 60
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.ext.consul.ServiceEntryConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/ext/consul/ServiceEntry;)V
         2: .line 62
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.consul.ServiceEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/consul/ServiceEntry;
            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.ext.consul.ServiceEntry this
         0: .line 70
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 1 /* jsonObject */
        start local 1 // io.vertx.core.json.JsonObject jsonObject
         1: .line 71
            aload 0 /* this */
            aload 1 /* jsonObject */
            invokestatic io.vertx.ext.consul.ServiceEntryConverter.toJson:(Lio/vertx/ext/consul/ServiceEntry;Lio/vertx/core/json/JsonObject;)V
         2: .line 72
            aload 1 /* jsonObject */
            areturn
        end local 1 // io.vertx.core.json.JsonObject jsonObject
        end local 0 // io.vertx.ext.consul.ServiceEntry this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lio/vertx/ext/consul/ServiceEntry;
            1    3     1  jsonObject  Lio/vertx/core/json/JsonObject;

  public io.vertx.ext.consul.CheckStatus aggregatedStatus();
    descriptor: ()Lio/vertx/ext/consul/CheckStatus;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.consul.ServiceEntry this
         0: .line 86
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.checks:Ljava/util/List;
            invokeinterface java.util.List.stream:()Ljava/util/stream/Stream;
            invokedynamic apply()Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/ext/consul/Check.getStatus()Lio/vertx/ext/consul/CheckStatus; (5)
                  (Lio/vertx/ext/consul/Check;)Lio/vertx/ext/consul/CheckStatus;
            invokeinterface java.util.stream.Stream.map:(Ljava/util/function/Function;)Ljava/util/stream/Stream;
            invokestatic java.util.stream.Collectors.toList:()Ljava/util/stream/Collector;
            invokeinterface java.util.stream.Stream.collect:(Ljava/util/stream/Collector;)Ljava/lang/Object;
            checkcast java.util.List
            invokestatic io.vertx.ext.consul.impl.Utils.aggregateCheckStatus:(Ljava/util/List;)Lio/vertx/ext/consul/CheckStatus;
            areturn
        end local 0 // io.vertx.ext.consul.ServiceEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/consul/ServiceEntry;

  public io.vertx.ext.consul.Node getNode();
    descriptor: ()Lio/vertx/ext/consul/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.consul.ServiceEntry this
         0: .line 95
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.node:Lio/vertx/ext/consul/Node;
            areturn
        end local 0 // io.vertx.ext.consul.ServiceEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/consul/ServiceEntry;

  public io.vertx.ext.consul.Service getService();
    descriptor: ()Lio/vertx/ext/consul/Service;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.consul.ServiceEntry this
         0: .line 104
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.service:Lio/vertx/ext/consul/Service;
            areturn
        end local 0 // io.vertx.ext.consul.ServiceEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/consul/ServiceEntry;

  public java.util.List<io.vertx.ext.consul.Check> getChecks();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.consul.ServiceEntry this
         0: .line 113
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.checks:Ljava/util/List;
            areturn
        end local 0 // io.vertx.ext.consul.ServiceEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/consul/ServiceEntry;
    Signature: ()Ljava/util/List<Lio/vertx/ext/consul/Check;>;

  public io.vertx.ext.consul.ServiceEntry setNode(io.vertx.ext.consul.Node);
    descriptor: (Lio/vertx/ext/consul/Node;)Lio/vertx/ext/consul/ServiceEntry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.consul.ServiceEntry this
        start local 1 // io.vertx.ext.consul.Node node
         0: .line 123
            aload 0 /* this */
            aload 1 /* node */
            putfield io.vertx.ext.consul.ServiceEntry.node:Lio/vertx/ext/consul/Node;
         1: .line 124
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.ext.consul.Node node
        end local 0 // io.vertx.ext.consul.ServiceEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/consul/ServiceEntry;
            0    2     1  node  Lio/vertx/ext/consul/Node;
    MethodParameters:
      Name  Flags
      node  

  public io.vertx.ext.consul.ServiceEntry setService(io.vertx.ext.consul.Service);
    descriptor: (Lio/vertx/ext/consul/Service;)Lio/vertx/ext/consul/ServiceEntry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.consul.ServiceEntry this
        start local 1 // io.vertx.ext.consul.Service service
         0: .line 134
            aload 0 /* this */
            aload 1 /* service */
            putfield io.vertx.ext.consul.ServiceEntry.service:Lio/vertx/ext/consul/Service;
         1: .line 135
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.ext.consul.Service service
        end local 0 // io.vertx.ext.consul.ServiceEntry this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/consul/ServiceEntry;
            0    2     1  service  Lio/vertx/ext/consul/Service;
    MethodParameters:
         Name  Flags
      service  

  public io.vertx.ext.consul.ServiceEntry setChecks(java.util.List<io.vertx.ext.consul.Check>);
    descriptor: (Ljava/util/List;)Lio/vertx/ext/consul/ServiceEntry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.consul.ServiceEntry this
        start local 1 // java.util.List checks
         0: .line 145
            aload 0 /* this */
            aload 1 /* checks */
            putfield io.vertx.ext.consul.ServiceEntry.checks:Ljava/util/List;
         1: .line 146
            aload 0 /* this */
            areturn
        end local 1 // java.util.List checks
        end local 0 // io.vertx.ext.consul.ServiceEntry this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/ext/consul/ServiceEntry;
            0    2     1  checks  Ljava/util/List<Lio/vertx/ext/consul/Check;>;
    Signature: (Ljava/util/List<Lio/vertx/ext/consul/Check;>;)Lio/vertx/ext/consul/ServiceEntry;
    MethodParameters:
        Name  Flags
      checks  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.ext.consul.ServiceEntry this
        start local 1 // java.lang.Object o
         0: .line 151
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 152
      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 154
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast io.vertx.ext.consul.ServiceEntry
            astore 2 /* entry */
        start local 2 // io.vertx.ext.consul.ServiceEntry entry
         4: .line 156
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.node:Lio/vertx/ext/consul/Node;
            ifnull 5
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.node:Lio/vertx/ext/consul/Node;
            aload 2 /* entry */
            getfield io.vertx.ext.consul.ServiceEntry.node:Lio/vertx/ext/consul/Node;
            invokevirtual io.vertx.ext.consul.Node.equals:(Ljava/lang/Object;)Z
            ifne 7
            goto 6
      StackMap locals: io.vertx.ext.consul.ServiceEntry
      StackMap stack:
         5: aload 2 /* entry */
            getfield io.vertx.ext.consul.ServiceEntry.node:Lio/vertx/ext/consul/Node;
            ifnull 7
      StackMap locals:
      StackMap stack:
         6: iconst_0
            ireturn
         7: .line 157
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.service:Lio/vertx/ext/consul/Service;
            ifnull 8
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.service:Lio/vertx/ext/consul/Service;
            aload 2 /* entry */
            getfield io.vertx.ext.consul.ServiceEntry.service:Lio/vertx/ext/consul/Service;
            invokevirtual io.vertx.ext.consul.Service.equals:(Ljava/lang/Object;)Z
            ifne 10
            goto 9
      StackMap locals:
      StackMap stack:
         8: aload 2 /* entry */
            getfield io.vertx.ext.consul.ServiceEntry.service:Lio/vertx/ext/consul/Service;
            ifnull 10
      StackMap locals:
      StackMap stack:
         9: iconst_0
            ireturn
        10: .line 158
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.checks:Ljava/util/List;
            ifnull 11
            aload 0 /* this */
            invokevirtual io.vertx.ext.consul.ServiceEntry.sorted:()Ljava/util/List;
            aload 2 /* entry */
            invokevirtual io.vertx.ext.consul.ServiceEntry.sorted:()Ljava/util/List;
            invokeinterface java.util.List.equals:(Ljava/lang/Object;)Z
            goto 13
      StackMap locals:
      StackMap stack:
        11: aload 2 /* entry */
            getfield io.vertx.ext.consul.ServiceEntry.checks:Ljava/util/List;
            ifnonnull 12
            iconst_1
            goto 13
      StackMap locals:
      StackMap stack:
        12: iconst_0
      StackMap locals:
      StackMap stack: int
        13: ireturn
        end local 2 // io.vertx.ext.consul.ServiceEntry entry
        end local 1 // java.lang.Object o
        end local 0 // io.vertx.ext.consul.ServiceEntry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lio/vertx/ext/consul/ServiceEntry;
            0   14     1      o  Ljava/lang/Object;
            4   14     2  entry  Lio/vertx/ext/consul/ServiceEntry;
    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.ext.consul.ServiceEntry this
         0: .line 163
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.node:Lio/vertx/ext/consul/Node;
            ifnull 1
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.node:Lio/vertx/ext/consul/Node;
            invokevirtual io.vertx.ext.consul.Node.hashCode:()I
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 1 /* result */
        start local 1 // int result
         3: .line 164
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.service:Lio/vertx/ext/consul/Service;
            ifnull 4
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.service:Lio/vertx/ext/consul/Service;
            invokevirtual io.vertx.ext.consul.Service.hashCode:()I
            goto 5
      StackMap locals: io.vertx.ext.consul.ServiceEntry int
      StackMap stack: int
         4: iconst_0
      StackMap locals: io.vertx.ext.consul.ServiceEntry int
      StackMap stack: int int
         5: iadd
            istore 1 /* result */
         6: .line 165
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.checks:Ljava/util/List;
            ifnull 7
            aload 0 /* this */
            invokevirtual io.vertx.ext.consul.ServiceEntry.sorted:()Ljava/util/List;
            invokeinterface java.util.List.hashCode:()I
            goto 8
      StackMap locals:
      StackMap stack: int
         7: iconst_0
      StackMap locals: io.vertx.ext.consul.ServiceEntry int
      StackMap stack: int int
         8: iadd
            istore 1 /* result */
         9: .line 166
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // io.vertx.ext.consul.ServiceEntry this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lio/vertx/ext/consul/ServiceEntry;
            3   10     1  result  I

  private java.util.List<io.vertx.ext.consul.Check> sorted();
    descriptor: ()Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.vertx.ext.consul.ServiceEntry this
         0: .line 170
            aconst_null
            astore 1 /* sorted */
        start local 1 // java.util.List sorted
         1: .line 171
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.checks:Ljava/util/List;
            ifnull 4
         2: .line 172
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield io.vertx.ext.consul.ServiceEntry.checks:Ljava/util/List;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            astore 1 /* sorted */
         3: .line 173
            aload 1 /* sorted */
            invokedynamic apply()Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  io/vertx/ext/consul/Check.getId()Ljava/lang/String; (5)
                  (Lio/vertx/ext/consul/Check;)Ljava/lang/String;
            invokestatic java.util.Comparator.comparing:(Ljava/util/function/Function;)Ljava/util/Comparator;
            invokeinterface java.util.List.sort:(Ljava/util/Comparator;)V
         4: .line 175
      StackMap locals: java.util.List
      StackMap stack:
            aload 1 /* sorted */
            areturn
        end local 1 // java.util.List sorted
        end local 0 // io.vertx.ext.consul.ServiceEntry this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lio/vertx/ext/consul/ServiceEntry;
            1    5     1  sorted  Ljava/util/List<Lio/vertx/ext/consul/Check;>;
    Signature: ()Ljava/util/List<Lio/vertx/ext/consul/Check;>;
}
SourceFile: "ServiceEntry.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true)