public boolean equals()

in client-common/src/main/java/org/apache/cassandra/sidecar/common/response/NodeSettings.java [127:146]


    public boolean equals(Object other)
    {
        if (this == other)
        {
            return true;
        }
        if (other == null || this.getClass() != other.getClass())
        {
            return false;
        }
        NodeSettings that = (NodeSettings) other;
        return Objects.equals(this.releaseVersion, that.releaseVersion)
               && Objects.equals(this.partitioner, that.partitioner)
               && Objects.equals(this.sidecar, that.sidecar)
               && Objects.equals(this.datacenter, that.datacenter)
               && Objects.equals(this.rpcAddress, that.rpcAddress)
               && Objects.equals(this.rpcPort, that.rpcPort)
               && Objects.equals(this.tokens, that.tokens)
        ;
    }