public class io.vertx.servicediscovery.Record
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: io.vertx.servicediscovery.Record
super_class: java.lang.Object
{
public static final java.lang.String ENDPOINT;
descriptor: Ljava/lang/String;
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: "endpoint"
private io.vertx.core.json.JsonObject location;
descriptor: Lio/vertx/core/json/JsonObject;
flags: (0x0002) ACC_PRIVATE
private io.vertx.core.json.JsonObject metadata;
descriptor: Lio/vertx/core/json/JsonObject;
flags: (0x0002) ACC_PRIVATE
private java.lang.String name;
descriptor: Ljava/lang/String;
flags: (0x0002) ACC_PRIVATE
private io.vertx.servicediscovery.Status status;
descriptor: Lio/vertx/servicediscovery/Status;
flags: (0x0002) ACC_PRIVATE
private java.lang.String registration;
descriptor: Ljava/lang/String;
flags: (0x0002) ACC_PRIVATE
private java.lang.String type;
descriptor: Ljava/lang/String;
flags: (0x0002) ACC_PRIVATE
public void <init>();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
new io.vertx.core.json.JsonObject
dup
invokespecial io.vertx.core.json.JsonObject.<init>:()V
putfield io.vertx.servicediscovery.Record.metadata:Lio/vertx/core/json/JsonObject;
2: aload 0
getstatic io.vertx.servicediscovery.Status.UNKNOWN:Lio/vertx/servicediscovery/Status;
putfield io.vertx.servicediscovery.Record.status:Lio/vertx/servicediscovery/Status;
3: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lio/vertx/servicediscovery/Record;
public void <init>(io.vertx.core.json.JsonObject);
descriptor: (Lio/vertx/core/json/JsonObject;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
new io.vertx.core.json.JsonObject
dup
invokespecial io.vertx.core.json.JsonObject.<init>:()V
putfield io.vertx.servicediscovery.Record.metadata:Lio/vertx/core/json/JsonObject;
2: aload 0
getstatic io.vertx.servicediscovery.Status.UNKNOWN:Lio/vertx/servicediscovery/Status;
putfield io.vertx.servicediscovery.Record.status:Lio/vertx/servicediscovery/Status;
3: aload 1
aload 0
invokestatic io.vertx.servicediscovery.RecordConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/servicediscovery/Record;)V
4: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lio/vertx/servicediscovery/Record;
0 5 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 0: new io.vertx.core.json.JsonObject
dup
invokespecial io.vertx.core.json.JsonObject.<init>:()V
astore 1
start local 1 1: aload 0
aload 1
invokestatic io.vertx.servicediscovery.RecordConverter.toJson:(Lio/vertx/servicediscovery/Record;Lio/vertx/core/json/JsonObject;)V
2: aload 1
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/servicediscovery/Record;
1 3 1 json Lio/vertx/core/json/JsonObject;
public void <init>(io.vertx.servicediscovery.Record);
descriptor: (Lio/vertx/servicediscovery/Record;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
new io.vertx.core.json.JsonObject
dup
invokespecial io.vertx.core.json.JsonObject.<init>:()V
putfield io.vertx.servicediscovery.Record.metadata:Lio/vertx/core/json/JsonObject;
2: aload 0
getstatic io.vertx.servicediscovery.Status.UNKNOWN:Lio/vertx/servicediscovery/Status;
putfield io.vertx.servicediscovery.Record.status:Lio/vertx/servicediscovery/Status;
3: aload 0
aload 1
getfield io.vertx.servicediscovery.Record.location:Lio/vertx/core/json/JsonObject;
putfield io.vertx.servicediscovery.Record.location:Lio/vertx/core/json/JsonObject;
4: aload 0
aload 1
getfield io.vertx.servicediscovery.Record.metadata:Lio/vertx/core/json/JsonObject;
putfield io.vertx.servicediscovery.Record.metadata:Lio/vertx/core/json/JsonObject;
5: aload 0
aload 1
getfield io.vertx.servicediscovery.Record.name:Ljava/lang/String;
putfield io.vertx.servicediscovery.Record.name:Ljava/lang/String;
6: aload 0
aload 1
getfield io.vertx.servicediscovery.Record.status:Lio/vertx/servicediscovery/Status;
putfield io.vertx.servicediscovery.Record.status:Lio/vertx/servicediscovery/Status;
7: aload 0
aload 1
getfield io.vertx.servicediscovery.Record.registration:Ljava/lang/String;
putfield io.vertx.servicediscovery.Record.registration:Ljava/lang/String;
8: aload 0
aload 1
getfield io.vertx.servicediscovery.Record.type:Ljava/lang/String;
putfield io.vertx.servicediscovery.Record.type:Ljava/lang/String;
9: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lio/vertx/servicediscovery/Record;
0 10 1 other Lio/vertx/servicediscovery/Record;
MethodParameters:
Name Flags
other
public io.vertx.core.json.JsonObject getLocation();
descriptor: ()Lio/vertx/core/json/JsonObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.servicediscovery.Record.location:Lio/vertx/core/json/JsonObject;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/servicediscovery/Record;
public io.vertx.servicediscovery.Record setLocation(io.vertx.core.json.JsonObject);
descriptor: (Lio/vertx/core/json/JsonObject;)Lio/vertx/servicediscovery/Record;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.servicediscovery.Record.location:Lio/vertx/core/json/JsonObject;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/servicediscovery/Record;
0 2 1 location Lio/vertx/core/json/JsonObject;
MethodParameters:
Name Flags
location
public io.vertx.core.json.JsonObject getMetadata();
descriptor: ()Lio/vertx/core/json/JsonObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.servicediscovery.Record.metadata:Lio/vertx/core/json/JsonObject;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/servicediscovery/Record;
public io.vertx.servicediscovery.Record setMetadata(io.vertx.core.json.JsonObject);
descriptor: (Lio/vertx/core/json/JsonObject;)Lio/vertx/servicediscovery/Record;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.servicediscovery.Record.metadata:Lio/vertx/core/json/JsonObject;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/servicediscovery/Record;
0 2 1 metadata Lio/vertx/core/json/JsonObject;
MethodParameters:
Name Flags
metadata
public java.lang.String getName();
descriptor: ()Ljava/lang/String;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.servicediscovery.Record.name:Ljava/lang/String;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/servicediscovery/Record;
public io.vertx.servicediscovery.Record setName(java.lang.String);
descriptor: (Ljava/lang/String;)Lio/vertx/servicediscovery/Record;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.servicediscovery.Record.name:Ljava/lang/String;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/servicediscovery/Record;
0 2 1 name Ljava/lang/String;
MethodParameters:
Name Flags
name
public io.vertx.servicediscovery.Status getStatus();
descriptor: ()Lio/vertx/servicediscovery/Status;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.servicediscovery.Record.status:Lio/vertx/servicediscovery/Status;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/servicediscovery/Record;
public io.vertx.servicediscovery.Record setStatus(io.vertx.servicediscovery.Status);
descriptor: (Lio/vertx/servicediscovery/Status;)Lio/vertx/servicediscovery/Record;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 1
invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
pop
1: aload 0
aload 1
putfield io.vertx.servicediscovery.Record.status:Lio/vertx/servicediscovery/Status;
2: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/servicediscovery/Record;
0 3 1 status Lio/vertx/servicediscovery/Status;
MethodParameters:
Name Flags
status
public io.vertx.servicediscovery.Record setRegistration(java.lang.String);
descriptor: (Ljava/lang/String;)Lio/vertx/servicediscovery/Record;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.servicediscovery.Record.registration:Ljava/lang/String;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/servicediscovery/Record;
0 2 1 reg Ljava/lang/String;
MethodParameters:
Name Flags
reg
public java.lang.String getRegistration();
descriptor: ()Ljava/lang/String;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.servicediscovery.Record.registration:Ljava/lang/String;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/servicediscovery/Record;
public java.lang.String getType();
descriptor: ()Ljava/lang/String;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.servicediscovery.Record.type:Ljava/lang/String;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/servicediscovery/Record;
public io.vertx.servicediscovery.Record setType(java.lang.String);
descriptor: (Ljava/lang/String;)Lio/vertx/servicediscovery/Record;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.servicediscovery.Record.type:Ljava/lang/String;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/servicediscovery/Record;
0 2 1 type Ljava/lang/String;
MethodParameters:
Name Flags
type
public boolean match(io.vertx.core.json.JsonObject);
descriptor: (Lio/vertx/core/json/JsonObject;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=6, args_size=2
start local 0 start local 1 0: aload 1
invokevirtual io.vertx.core.json.JsonObject.fieldNames:()Ljava/util/Set;
invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
astore 3
goto 18
StackMap locals: io.vertx.servicediscovery.Record io.vertx.core.json.JsonObject top java.util.Iterator
StackMap stack:
1: aload 3
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
checkcast java.lang.String
astore 2
start local 2 2: aload 2
dup
astore 5
invokevirtual java.lang.String.hashCode:()I
lookupswitch { // 4
-1350309703: 3
-892481550: 4
3373707: 5
3575610: 6
default: 15
}
StackMap locals: io.vertx.servicediscovery.Record io.vertx.core.json.JsonObject java.lang.String java.util.Iterator top java.lang.String
StackMap stack:
3: aload 5
ldc "registration"
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifne 9
goto 15
StackMap locals:
StackMap stack:
4: aload 5
ldc "status"
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifne 11
goto 15
StackMap locals:
StackMap stack:
5: aload 5
ldc "name"
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifne 7
goto 15
StackMap locals:
StackMap stack:
6: aload 5
ldc "type"
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifne 13
goto 15
7: StackMap locals:
StackMap stack:
aload 0
aload 0
invokevirtual io.vertx.servicediscovery.Record.getName:()Ljava/lang/String;
aload 1
ldc "name"
invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
invokevirtual io.vertx.servicediscovery.Record.match:(Ljava/lang/Object;Ljava/lang/Object;)Z
istore 4
start local 4 8: goto 16
end local 4 9: StackMap locals:
StackMap stack:
aload 0
aload 0
invokevirtual io.vertx.servicediscovery.Record.getRegistration:()Ljava/lang/String;
aload 1
ldc "registration"
invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
invokevirtual io.vertx.servicediscovery.Record.match:(Ljava/lang/Object;Ljava/lang/Object;)Z
istore 4
start local 4 10: goto 16
end local 4 11: StackMap locals:
StackMap stack:
aload 0
aload 0
invokevirtual io.vertx.servicediscovery.Record.getStatus:()Lio/vertx/servicediscovery/Status;
invokevirtual io.vertx.servicediscovery.Status.name:()Ljava/lang/String;
aload 1
ldc "status"
invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
invokevirtual io.vertx.servicediscovery.Record.match:(Ljava/lang/Object;Ljava/lang/Object;)Z
istore 4
start local 4 12: goto 16
end local 4 13: StackMap locals:
StackMap stack:
aload 0
aload 0
invokevirtual io.vertx.servicediscovery.Record.getType:()Ljava/lang/String;
aload 1
ldc "type"
invokevirtual io.vertx.core.json.JsonObject.getString:(Ljava/lang/String;)Ljava/lang/String;
invokevirtual io.vertx.servicediscovery.Record.match:(Ljava/lang/Object;Ljava/lang/Object;)Z
istore 4
start local 4 14: goto 16
end local 4 15: StackMap locals:
StackMap stack:
aload 0
aload 0
invokevirtual io.vertx.servicediscovery.Record.getMetadata:()Lio/vertx/core/json/JsonObject;
aload 2
invokevirtual io.vertx.core.json.JsonObject.getValue:(Ljava/lang/String;)Ljava/lang/Object;
aload 1
aload 2
invokevirtual io.vertx.core.json.JsonObject.getValue:(Ljava/lang/String;)Ljava/lang/Object;
invokevirtual io.vertx.servicediscovery.Record.match:(Ljava/lang/Object;Ljava/lang/Object;)Z
istore 4
start local 4 16: StackMap locals: io.vertx.servicediscovery.Record io.vertx.core.json.JsonObject java.lang.String java.util.Iterator int
StackMap stack:
iload 4
ifne 18
17: iconst_0
ireturn
end local 4 end local 2 18: StackMap locals: io.vertx.servicediscovery.Record io.vertx.core.json.JsonObject top java.util.Iterator
StackMap stack:
aload 3
invokeinterface java.util.Iterator.hasNext:()Z
ifne 1
19: iconst_1
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 20 0 this Lio/vertx/servicediscovery/Record;
0 20 1 filter Lio/vertx/core/json/JsonObject;
2 18 2 key Ljava/lang/String;
8 9 4 match Z
10 11 4 match Z
12 13 4 match Z
14 15 4 match Z
16 18 4 match Z
MethodParameters:
Name Flags
filter
private boolean match(java.lang.Object, java.lang.Object);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Z
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 1
ifnull 6
1: ldc "*"
aload 2
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifne 5
2: aload 1
instanceof java.lang.String
ifeq 4
3: aload 1
checkcast java.lang.String
aload 2
invokevirtual java.lang.Object.toString:()Ljava/lang/String;
invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
ifeq 6
goto 5
StackMap locals:
StackMap stack:
4: aload 1
aload 2
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
ifeq 6
5: StackMap locals:
StackMap stack:
iconst_1
ireturn
StackMap locals:
StackMap stack:
6: iconst_0
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lio/vertx/servicediscovery/Record;
0 7 1 actual Ljava/lang/Object;
0 7 2 expected Ljava/lang/Object;
MethodParameters:
Name Flags
actual
expected
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 start local 1 0: aload 1
aload 0
if_acmpne 1
iconst_1
ireturn
1: StackMap locals:
StackMap stack:
aload 1
instanceof io.vertx.servicediscovery.Record
ifne 2
iconst_0
ireturn
2: StackMap locals:
StackMap stack:
aload 1
checkcast io.vertx.servicediscovery.Record
astore 2
start local 2 3: aload 0
getfield io.vertx.servicediscovery.Record.name:Ljava/lang/String;
ifnonnull 4
aload 2
getfield io.vertx.servicediscovery.Record.name:Ljava/lang/String;
ifnonnull 16
goto 5
StackMap locals: io.vertx.servicediscovery.Record
StackMap stack:
4: aload 0
getfield io.vertx.servicediscovery.Record.name:Ljava/lang/String;
aload 2
getfield io.vertx.servicediscovery.Record.name:Ljava/lang/String;
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifeq 16
5: StackMap locals:
StackMap stack:
aload 0
getfield io.vertx.servicediscovery.Record.type:Ljava/lang/String;
ifnonnull 6
aload 2
getfield io.vertx.servicediscovery.Record.type:Ljava/lang/String;
ifnonnull 16
goto 7
StackMap locals:
StackMap stack:
6: aload 0
getfield io.vertx.servicediscovery.Record.type:Ljava/lang/String;
aload 2
getfield io.vertx.servicediscovery.Record.type:Ljava/lang/String;
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifeq 16
7: StackMap locals:
StackMap stack:
aload 0
getfield io.vertx.servicediscovery.Record.location:Lio/vertx/core/json/JsonObject;
ifnonnull 8
aload 2
getfield io.vertx.servicediscovery.Record.location:Lio/vertx/core/json/JsonObject;
ifnonnull 16
goto 9
StackMap locals:
StackMap stack:
8: aload 0
getfield io.vertx.servicediscovery.Record.location:Lio/vertx/core/json/JsonObject;
aload 2
getfield io.vertx.servicediscovery.Record.location:Lio/vertx/core/json/JsonObject;
invokevirtual io.vertx.core.json.JsonObject.equals:(Ljava/lang/Object;)Z
ifeq 16
9: StackMap locals:
StackMap stack:
aload 0
getfield io.vertx.servicediscovery.Record.metadata:Lio/vertx/core/json/JsonObject;
ifnonnull 10
aload 2
getfield io.vertx.servicediscovery.Record.metadata:Lio/vertx/core/json/JsonObject;
ifnonnull 16
goto 11
StackMap locals:
StackMap stack:
10: aload 0
getfield io.vertx.servicediscovery.Record.metadata:Lio/vertx/core/json/JsonObject;
aload 2
getfield io.vertx.servicediscovery.Record.metadata:Lio/vertx/core/json/JsonObject;
invokevirtual io.vertx.core.json.JsonObject.equals:(Ljava/lang/Object;)Z
ifeq 16
11: StackMap locals:
StackMap stack:
aload 0
getfield io.vertx.servicediscovery.Record.registration:Ljava/lang/String;
ifnonnull 12
aload 2
getfield io.vertx.servicediscovery.Record.registration:Ljava/lang/String;
ifnonnull 16
goto 13
StackMap locals:
StackMap stack:
12: aload 0
getfield io.vertx.servicediscovery.Record.registration:Ljava/lang/String;
aload 2
getfield io.vertx.servicediscovery.Record.registration:Ljava/lang/String;
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifeq 16
13: StackMap locals:
StackMap stack:
aload 0
getfield io.vertx.servicediscovery.Record.status:Lio/vertx/servicediscovery/Status;
ifnonnull 14
aload 2
getfield io.vertx.servicediscovery.Record.status:Lio/vertx/servicediscovery/Status;
ifnonnull 16
goto 15
StackMap locals:
StackMap stack:
14: aload 0
getfield io.vertx.servicediscovery.Record.status:Lio/vertx/servicediscovery/Status;
aload 2
getfield io.vertx.servicediscovery.Record.status:Lio/vertx/servicediscovery/Status;
invokevirtual io.vertx.servicediscovery.Status.equals:(Ljava/lang/Object;)Z
ifeq 16
15: StackMap locals:
StackMap stack:
iconst_1
ireturn
StackMap locals:
StackMap stack:
16: iconst_0
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 17 0 this Lio/vertx/servicediscovery/Record;
0 17 1 o Ljava/lang/Object;
3 17 2 other Lio/vertx/servicediscovery/Record;
MethodParameters:
Name Flags
o
public int hashCode();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=1
start local 0 0: bipush 17
istore 1
start local 1 1: bipush 31
iload 1
imul
aload 0
getfield io.vertx.servicediscovery.Record.name:Ljava/lang/String;
ifnonnull 2
iconst_0
goto 3
StackMap locals: io.vertx.servicediscovery.Record int
StackMap stack: int
2: aload 0
getfield io.vertx.servicediscovery.Record.name:Ljava/lang/String;
invokevirtual java.lang.String.hashCode:()I
StackMap locals: io.vertx.servicediscovery.Record int
StackMap stack: int int
3: iadd
istore 1
4: bipush 31
iload 1
imul
aload 0
getfield io.vertx.servicediscovery.Record.type:Ljava/lang/String;
ifnonnull 5
iconst_0
goto 6
StackMap locals:
StackMap stack: int
5: aload 0
getfield io.vertx.servicediscovery.Record.type:Ljava/lang/String;
invokevirtual java.lang.String.hashCode:()I
StackMap locals: io.vertx.servicediscovery.Record int
StackMap stack: int int
6: iadd
istore 1
7: bipush 31
iload 1
imul
aload 0
getfield io.vertx.servicediscovery.Record.location:Lio/vertx/core/json/JsonObject;
ifnonnull 8
iconst_0
goto 9
StackMap locals:
StackMap stack: int
8: aload 0
getfield io.vertx.servicediscovery.Record.location:Lio/vertx/core/json/JsonObject;
invokevirtual io.vertx.core.json.JsonObject.hashCode:()I
StackMap locals: io.vertx.servicediscovery.Record int
StackMap stack: int int
9: iadd
istore 1
10: bipush 31
iload 1
imul
aload 0
getfield io.vertx.servicediscovery.Record.metadata:Lio/vertx/core/json/JsonObject;
ifnonnull 11
iconst_0
goto 12
StackMap locals:
StackMap stack: int
11: aload 0
getfield io.vertx.servicediscovery.Record.metadata:Lio/vertx/core/json/JsonObject;
invokevirtual io.vertx.core.json.JsonObject.hashCode:()I
StackMap locals: io.vertx.servicediscovery.Record int
StackMap stack: int int
12: iadd
istore 1
13: bipush 31
iload 1
imul
aload 0
getfield io.vertx.servicediscovery.Record.registration:Ljava/lang/String;
ifnonnull 14
iconst_0
goto 15
StackMap locals:
StackMap stack: int
14: aload 0
getfield io.vertx.servicediscovery.Record.registration:Ljava/lang/String;
invokevirtual java.lang.String.hashCode:()I
StackMap locals: io.vertx.servicediscovery.Record int
StackMap stack: int int
15: iadd
istore 1
16: bipush 31
iload 1
imul
aload 0
getfield io.vertx.servicediscovery.Record.status:Lio/vertx/servicediscovery/Status;
ifnonnull 17
iconst_0
goto 18
StackMap locals:
StackMap stack: int
17: aload 0
getfield io.vertx.servicediscovery.Record.status:Lio/vertx/servicediscovery/Status;
invokevirtual io.vertx.servicediscovery.Status.hashCode:()I
StackMap locals: io.vertx.servicediscovery.Record int
StackMap stack: int int
18: iadd
istore 1
19: iload 1
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 20 0 this Lio/vertx/servicediscovery/Record;
1 20 1 result I
public java.lang.String toString();
descriptor: ()Ljava/lang/String;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new java.lang.StringBuilder
dup
ldc "Record["
invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
aload 0
invokevirtual io.vertx.servicediscovery.Record.toJson:()Lio/vertx/core/json/JsonObject;
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
ldc "]"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/servicediscovery/Record;
}
SourceFile: "Record.java"
InnerClasses:
public abstract Entry = java.util.Map$Entry of java.util.Map
RuntimeVisibleAnnotations:
io.vertx.codegen.annotations.DataObject(generateConverter = true)