public int hashCode()

in java/clickhouse-connector/src/integration-test/java/com/epam/deltix/timebase/connector/clickhouse/timebase/BestBidOfferTestMessage.java [486:510]


    public int hashCode() {
        int hash = super.hashCode();
        if (hasIsNational()) {
            hash = hash * 31 + (getIsNational() ? 1231 : 1237);
        }
        if (hasBidNumOfOrders()) {
            hash = hash * 31 + (getBidNumOfOrders());
        }
        if (hasBidQuoteId()) {
            hash = hash * 31 + getBidQuoteId().hashCode();
        }
        if (hasOfferPrice()) {
            hash = hash * 31 + ((int)(Double.doubleToLongBits(getOfferPrice()) ^ (Double.doubleToLongBits(getOfferPrice()) >>> 32)));
        }
        if (hasOfferSize()) {
            hash = hash * 31 + ((int)(Double.doubleToLongBits(getOfferSize()) ^ (Double.doubleToLongBits(getOfferSize()) >>> 32)));
        }
        if (hasOfferNumOfOrders()) {
            hash = hash * 31 + (getOfferNumOfOrders());
        }
        if (hasOfferQuoteId()) {
            hash = hash * 31 + getOfferQuoteId().hashCode();
        }
        return hash;
    }