All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.longport.quote.CapitalDistribution Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
package com.longport.quote;

import java.math.BigDecimal;

public class CapitalDistribution {
    private BigDecimal large;
    private BigDecimal medium;
    private BigDecimal small;

    public BigDecimal getLarge() {
        return large;
    }

    public BigDecimal getMedium() {
        return medium;
    }

    public BigDecimal getSmall() {
        return small;
    }

    @Override
    public String toString() {
        return "CapitalDistribution [large=" + large + ", medium=" + medium + ", small=" + small + "]";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy