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

net.jacobpeterson.domain.alpaca.websocket.AlpacaStreamMessage Maven / Gradle / Ivy


package net.jacobpeterson.domain.alpaca.websocket;

import java.io.Serializable;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import net.jacobpeterson.abstracts.websocket.message.StreamMessage;
import net.jacobpeterson.alpaca.websocket.message.AlpacaStreamMessageType;


/**
 * See https://docs.alpaca.markets/api-documentation/api-v2/streaming/
 * 

* * */ public class AlpacaStreamMessage implements Serializable, StreamMessage { /** * The stream type *

* * */ @SerializedName("stream") @Expose private AlpacaStreamMessageType stream; private final static long serialVersionUID = -8481299662662298746L; /** * No args constructor for use in serialization * */ public AlpacaStreamMessage() { } /** * * @param stream */ public AlpacaStreamMessage(AlpacaStreamMessageType stream) { super(); this.stream = stream; } /** * The stream type *

* * */ public AlpacaStreamMessageType getStream() { return stream; } /** * The stream type *

* * */ public void setStream(AlpacaStreamMessageType stream) { this.stream = stream; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(AlpacaStreamMessage.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('['); sb.append("stream"); sb.append('='); sb.append(((this.stream == null)?"":this.stream)); sb.append(','); if (sb.charAt((sb.length()- 1)) == ',') { sb.setCharAt((sb.length()- 1), ']'); } else { sb.append(']'); } return sb.toString(); } @Override public int hashCode() { int result = 1; result = ((result* 31)+((this.stream == null)? 0 :this.stream.hashCode())); return result; } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof AlpacaStreamMessage) == false) { return false; } AlpacaStreamMessage rhs = ((AlpacaStreamMessage) other); return ((this.stream == rhs.stream)||((this.stream!= null)&&this.stream.equals(rhs.stream))); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy