public boolean equals()

in server/src/main/java/org/apache/cassandra/sidecar/db/RestoreSlice.java [86:107]


    public boolean equals(Object obj)
    {
        if (obj == this)
            return true;

        if (!(obj instanceof RestoreSlice))
            return false;

        RestoreSlice that = (RestoreSlice) obj;
        return Objects.equals(this.jobId, that.jobId)
               && Objects.equals(this.keyspace, that.keyspace)
               && Objects.equals(this.table, that.table)
               && Objects.equals(this.sliceId, that.sliceId)
               && Objects.equals(this.bucketId, that.bucketId)
               && Objects.equals(this.bucket, that.bucket)
               && Objects.equals(this.key, that.key)
               && Objects.equals(this.checksum, that.checksum)
               && Objects.equals(this.startToken, that.startToken)
               && Objects.equals(this.endToken, that.endToken)
               && this.compressedSize == that.compressedSize
               && this.uncompressedSize == that.uncompressedSize;
    }