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

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

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

import java.math.BigDecimal;

public class Depth {
    private int position;
    private BigDecimal price;
    private long volume;
    private long orderNum;

    public int getPosition() {
        return position;
    }

    public BigDecimal getPrice() {
        return price;
    }

    public long getVolume() {
        return volume;
    }

    public long getOrderNum() {
        return orderNum;
    }

    @Override
    public String toString() {
        return "Depth [orderNum=" + orderNum + ", position=" + position + ", price=" + price + ", volume=" + volume
                + "]";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy