in client-common/src/main/java/org/apache/cassandra/sidecar/common/response/data/CdcSegmentInfo.java [52:65]
public boolean equals(Object o)
{
if (this == o)
{
return true;
}
if (o == null || getClass() != o.getClass())
{
return false;
}
CdcSegmentInfo that = (CdcSegmentInfo) o;
return size == that.size && idx == that.idx && completed == that.completed && lastModifiedTimestamp == that.lastModifiedTimestamp &&
Objects.equals(name, that.name);
}