Package markets.alpaca.client.broker.sse
Record Class BrokerSseLegacyDateOptions
java.lang.Object
java.lang.Record
markets.alpaca.client.broker.sse.BrokerSseLegacyDateOptions
public record BrokerSseLegacyDateOptions(LocalDate since, LocalDate until, Integer sinceId, Integer untilId, String sinceUlid, String untilUlid)
extends Record
Optional LocalDate, numeric ID, and ULID filters for legacy Broker SSE endpoints.
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuilder()static BrokerSseLegacyDateOptionsempty()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.since()Returns the value of thesincerecord component.sinceId()Returns the value of thesinceIdrecord component.Returns the value of thesinceUlidrecord component.final StringtoString()Returns a string representation of this record class.until()Returns the value of theuntilrecord component.untilId()Returns the value of theuntilIdrecord component.Returns the value of theuntilUlidrecord component.
-
Constructor Details
-
BrokerSseLegacyDateOptions
public BrokerSseLegacyDateOptions(LocalDate since, LocalDate until, Integer sinceId, Integer untilId, String sinceUlid, String untilUlid) Creates an instance of aBrokerSseLegacyDateOptionsrecord class.- Parameters:
since- the value for thesincerecord componentuntil- the value for theuntilrecord componentsinceId- the value for thesinceIdrecord componentuntilId- the value for theuntilIdrecord componentsinceUlid- the value for thesinceUlidrecord componentuntilUlid- the value for theuntilUlidrecord component
-
-
Method Details
-
empty
-
builder
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
since
Returns the value of thesincerecord component.- Returns:
- the value of the
sincerecord component
-
until
Returns the value of theuntilrecord component.- Returns:
- the value of the
untilrecord component
-
sinceId
Returns the value of thesinceIdrecord component.- Returns:
- the value of the
sinceIdrecord component
-
untilId
Returns the value of theuntilIdrecord component.- Returns:
- the value of the
untilIdrecord component
-
sinceUlid
Returns the value of thesinceUlidrecord component.- Returns:
- the value of the
sinceUlidrecord component
-
untilUlid
Returns the value of theuntilUlidrecord component.- Returns:
- the value of the
untilUlidrecord component
-