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

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

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

import java.math.BigDecimal;
import java.time.OffsetDateTime;

public class PrePostQuote {
    private BigDecimal lastDone;
    private OffsetDateTime timestamp;
    private long volume;
    private BigDecimal turnover;
    private BigDecimal high;
    private BigDecimal low;
    private BigDecimal prevClose;

    public BigDecimal getLastDone() {
        return lastDone;
    }

    public OffsetDateTime getTimestamp() {
        return timestamp;
    }

    public long getVolume() {
        return volume;
    }

    public BigDecimal getTurnover() {
        return turnover;
    }

    public BigDecimal getHigh() {
        return high;
    }

    public BigDecimal getLow() {
        return low;
    }

    public BigDecimal getPrevClose() {
        return prevClose;
    }

    @Override
    public String toString() {
        return "PrePostQuote [high=" + high + ", lastDone=" + lastDone + ", low=" + low + ", prevClose=" + prevClose
                + ", timestamp=" + timestamp + ", turnover=" + turnover + ", volume=" + volume + "]";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy