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

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

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

  public void <init>(com.mongodb.connection.ClusterId, com.mongodb.connection.ClusterDescription, com.mongodb.connection.ClusterDescription);
    descriptor: (Lcom/mongodb/connection/ClusterId;Lcom/mongodb/connection/ClusterDescription;Lcom/mongodb/connection/ClusterDescription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.mongodb.event.ClusterDescriptionChangedEvent this
        start local 1 // com.mongodb.connection.ClusterId clusterId
        start local 2 // com.mongodb.connection.ClusterDescription newDescription
        start local 3 // com.mongodb.connection.ClusterDescription previousDescription
         0: .line 41
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            ldc "clusterId"
            aload 1 /* clusterId */
            invokestatic com.mongodb.assertions.Assertions.notNull:(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.mongodb.connection.ClusterId
            putfield com.mongodb.event.ClusterDescriptionChangedEvent.clusterId:Lcom/mongodb/connection/ClusterId;
         2: .line 44
            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.ClusterDescription
            putfield com.mongodb.event.ClusterDescriptionChangedEvent.newDescription:Lcom/mongodb/connection/ClusterDescription;
         3: .line 45
            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.ClusterDescription
            putfield com.mongodb.event.ClusterDescriptionChangedEvent.previousDescription:Lcom/mongodb/connection/ClusterDescription;
         4: .line 46
            return
        end local 3 // com.mongodb.connection.ClusterDescription previousDescription
        end local 2 // com.mongodb.connection.ClusterDescription newDescription
        end local 1 // com.mongodb.connection.ClusterId clusterId
        end local 0 // com.mongodb.event.ClusterDescriptionChangedEvent this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    5     0                 this  Lcom/mongodb/event/ClusterDescriptionChangedEvent;
            0    5     1            clusterId  Lcom/mongodb/connection/ClusterId;
            0    5     2       newDescription  Lcom/mongodb/connection/ClusterDescription;
            0    5     3  previousDescription  Lcom/mongodb/connection/ClusterDescription;
    MethodParameters:
                     Name  Flags
      clusterId            final
      newDescription       final
      previousDescription  final

  public com.mongodb.connection.ClusterId getClusterId();
    descriptor: ()Lcom/mongodb/connection/ClusterId;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.event.ClusterDescriptionChangedEvent this
         0: .line 54
            aload 0 /* this */
            getfield com.mongodb.event.ClusterDescriptionChangedEvent.clusterId:Lcom/mongodb/connection/ClusterId;
            areturn
        end local 0 // com.mongodb.event.ClusterDescriptionChangedEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/event/ClusterDescriptionChangedEvent;

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

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

  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.ClusterDescriptionChangedEvent this
         0: .line 77
            new java.lang.StringBuilder
            dup
            ldc "ClusterDescriptionChangedEvent{clusterId="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         1: .line 78
            aload 0 /* this */
            getfield com.mongodb.event.ClusterDescriptionChangedEvent.clusterId:Lcom/mongodb/connection/ClusterId;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         2: .line 79
            ldc ", newDescription="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.mongodb.event.ClusterDescriptionChangedEvent.newDescription:Lcom/mongodb/connection/ClusterDescription;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         3: .line 80
            ldc ", previousDescription="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.mongodb.event.ClusterDescriptionChangedEvent.previousDescription:Lcom/mongodb/connection/ClusterDescription;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         4: .line 81
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
         5: .line 77
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.mongodb.event.ClusterDescriptionChangedEvent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/mongodb/event/ClusterDescriptionChangedEvent;
}
SourceFile: "ClusterDescriptionChangedEvent.java"