Package org.apache.commons.lang3.builder

Examples of org.apache.commons.lang3.builder.HashCodeBuilder


        this.yieldRedemptionDate = yieldRedemptionDate;
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder().append(commission).append(currencyCode).append(executionId)
                .append(realizedProfitAndLoss).append(yield).append(yieldRedemptionDate).toHashCode();
    }
View Full Code Here


        return underlyingPrice;
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder().append(contract).append(volatility).append(underlyingPrice).toHashCode();
    }
View Full Code Here

        this.price = price;
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder().append(contractId).append(delta).append(price).toHashCode();
    }
View Full Code Here

        builder.append(contract.getLocalSymbol());
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder().append(contract).append(reportType).toHashCode();
    }
View Full Code Here

        this.warningText = warningText;
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder().append(commission).append(commissionCurrencyCode).append(equityWithLoan)
                .append(initialMargin).append(maintenanceMargin).append(maxCommission).append(minCommission)
                .append(orderStatus).append(warningText).toHashCode();
    }
View Full Code Here

        }
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder().append(contract).toHashCode();
    }
View Full Code Here

        }
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder().toHashCode();
    }
View Full Code Here

        }
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder().append(contract).append(order).toHashCode();
    }
View Full Code Here

        this.securityIds = securityIds;
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder().append(bondType).append(callable).append(category).append(contract)
                .append(contractMonth).append(convertible).append(coupon).append(couponType).append(cusip)
                .append(description).append(economicValueMultiplier).append(economicValueRule).append(industry)
                .append(issueDate).append(liquidHours).append(longName).append(marketName).append(maturity)
                .append(minimumFluctuation).append(nextOptionDate).append(nextOptionPartial).append(nextOptionType)
                .append(notes).append(validOrderTypes).append(priceMagnifier).append(putable).append(ratings)
View Full Code Here

        this.shortSaleSlotValue = shortSaleSlotValue;
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder().append(orderAction).append(contractId).append(designatedLocation)
                .append(exemptionCode).append(exchange).append(openClose).append(ratio).append(shortSaleSlotValue)
                .toHashCode();
    }
View Full Code Here

TOP

Related Classes of org.apache.commons.lang3.builder.HashCodeBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.