public boolean equals()

in docker/ops-playground-image/java/flink-playground-clickcountjob/src/main/java/org/apache/flink/playgrounds/ops/clickcount/records/ClickEventStatistics.java [87:99]


	public boolean equals(final Object o) {
		if (this == o) {
			return true;
		}
		if (o == null || getClass() != o.getClass()) {
			return false;
		}
		final ClickEventStatistics that = (ClickEventStatistics) o;
		return count == that.count &&
				Objects.equals(windowStart, that.windowStart) &&
				Objects.equals(windowEnd, that.windowEnd) &&
				Objects.equals(page, that.page);
	}