@Override
public boolean equals(final Object thatEntry) {
if (thatEntry instanceof MarketCuvolEntry) {
final MarketCuvolEntry that = (MarketCuvolEntry) thatEntry;
return this.place() == that.place()
&& this.priceValue().equals(that.priceValue())
&& this.sizeValue().equals(that.sizeValue());
}
return false;
}