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

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

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

import java.time.LocalTime;

public class TradingSessionInfo {
    private LocalTime beginTime;
    private LocalTime endTime;
    private TradeSession tradeSession;

    public LocalTime getBeginTime() {
        return beginTime;
    }

    public LocalTime getEndTime() {
        return endTime;
    }

    public TradeSession getTradeSession() {
        return tradeSession;
    }

    @Override
    public String toString() {
        return "TradingSessionInfo [beginTime=" + beginTime + ", endTime=" + endTime + ", tradeSession=" + tradeSession
                + "]";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy