public final class com.mongodb.event.ServerDescriptionChangedEvent
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.mongodb.event.ServerDescriptionChangedEvent
  super_class: java.lang.Object
{
  private final com.mongodb.connection.ServerId serverId;
    descriptor: Lcom/mongodb/connection/ServerId;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.mongodb.connection.ServerDescription newDescription;
    descriptor: Lcom/mongodb/connection/ServerDescription;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.mongodb.connection.ServerDescription previousDescription;
    descriptor: Lcom/mongodb/connection/ServerDescription;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(com.mongodb.connection.ServerId, com.mongodb.connection.ServerDescription, com.mongodb.connection.ServerDescription);
    descriptor: (Lcom/mongodb/connection/ServerId;Lcom/mongodb/connection/ServerDescription;Lcom/mongodb/connection/ServerDescription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.mongodb.event.ServerDescriptionChangedEvent this
        start local 1 // com.mongodb.connection.ServerId serverId
        start local 2 // com.mongodb.connection.ServerDescription newDescription
        start local 3 // com.mongodb.connection.ServerDescription previousDescription
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            ldc "serverId"
            aload 1 /* serverId */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.mongodb.connection.ServerId
            putfield com.mongodb.event.ServerDescriptionChangedEvent.serverId:Lcom/mongodb/connection/ServerId;
         2: .line 45
            aload 0 /* this */
            ldc "newDescription"
            aload 2 /* newDescription */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.mongodb.connection.ServerDescription
            putfield com.mongodb.event.ServerDescriptionChangedEvent.newDescription:Lcom/mongodb/connection/ServerDescription;
         3: .line 46
            aload 0 /* this */
            ldc "previousDescription"
            aload 3 /* previousDescription */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.mongodb.connection.ServerDescription
            putfield com.mongodb.event.ServerDescriptionChangedEvent.previousDescription:Lcom/mongodb/connection/ServerDescription;
         4: .line 47
            return
        end local 3 // com.mongodb.connection.ServerDescription previousDescription
        end local 2 // com.mongodb.connection.ServerDescription newDescription
        end local 1 // com.mongodb.connection.ServerId serverId
        end local 0 // com.mongodb.event.ServerDescriptionChangedEvent this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    5     0                 this  Lcom/mongodb/event/ServerDescriptionChangedEvent;
            0    5     1             serverId  Lcom/mongodb/connection/ServerId;
            0    5     2       newDescription  Lcom/mongodb/connection/ServerDescription;
            0    5     3  previousDescription  Lcom/mongodb/connection/ServerDescription;
    MethodParameters:
                     Name  Flags
      serverId             final
      newDescription       final
      previousDescription  final

  public com.mongodb.connection.ServerId getServerId();
    descriptor: ()Lcom/mongodb/connection/ServerId;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.event.ServerDescriptionChangedEvent this
         0: .line 56
            aload 0 /* this */
            getfield com.mongodb.event.ServerDescriptionChangedEvent.serverId:Lcom/mongodb/connection/ServerId;
            areturn
        end local 0 // com.mongodb.event.ServerDescriptionChangedEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/event/ServerDescriptionChangedEvent;

  public com.mongodb.connection.ServerDescription getNewDescription();
    descriptor: ()Lcom/mongodb/connection/ServerDescription;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.event.ServerDescriptionChangedEvent this
         0: .line 65
            aload 0 /* this */
            getfield com.mongodb.event.ServerDescriptionChangedEvent.newDescription:Lcom/mongodb/connection/ServerDescription;
            areturn
        end local 0 // com.mongodb.event.ServerDescriptionChangedEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/event/ServerDescriptionChangedEvent;

  public com.mongodb.connection.ServerDescription getPreviousDescription();
    descriptor: ()Lcom/mongodb/connection/ServerDescription;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.event.ServerDescriptionChangedEvent this
         0: .line 74
            aload 0 /* this */
            getfield com.mongodb.event.ServerDescriptionChangedEvent.previousDescription:Lcom/mongodb/connection/ServerDescription;
            areturn
        end local 0 // com.mongodb.event.ServerDescriptionChangedEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/event/ServerDescriptionChangedEvent;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.mongodb.event.ServerDescriptionChangedEvent this
         0: .line 79
            new java.lang.StringBuilder
            dup
            ldc "ServerDescriptionChangedEvent{serverId="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         1: .line 80
            aload 0 /* this */
            getfield com.mongodb.event.ServerDescriptionChangedEvent.serverId:Lcom/mongodb/connection/ServerId;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         2: .line 81
            ldc ", newDescription="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.mongodb.event.ServerDescriptionChangedEvent.newDescription:Lcom/mongodb/connection/ServerDescription;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         3: .line 82
            ldc ", previousDescription="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.mongodb.event.ServerDescriptionChangedEvent.previousDescription:Lcom/mongodb/connection/ServerDescription;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         4: .line 83
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
         5: .line 79
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.mongodb.event.ServerDescriptionChangedEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/mongodb/event/ServerDescriptionChangedEvent;
}
SourceFile: "ServerDescriptionChangedEvent.java"