Package markets.alpaca.client.broker.sse
Record Class BrokerSseDateOptions
java.lang.Object
java.lang.Record
markets.alpaca.client.broker.sse.BrokerSseDateOptions
public record BrokerSseDateOptions(LocalDate since, LocalDate until, String sinceId, String untilId)
extends Record
Optional LocalDate-based filters for Broker SSE endpoints.
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionBrokerSseDateOptions(LocalDate since, LocalDate until, String sinceId, String untilId) Creates an instance of aBrokerSseDateOptionsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionstatic BrokerSseDateOptions.Builderbuilder()static BrokerSseDateOptionsempty()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.final StringtoString()Returns a string representation of this record class.until()Returns the value of theuntilrecord component.untilId()Returns the value of theuntilIdrecord component.
-
Constructor Details
-
BrokerSseDateOptions
Creates an instance of aBrokerSseDateOptionsrecord class.- Parameters:
since- the value for thesincerecord componentuntil- the value for theuntilrecord componentsinceId- the value for thesinceIdrecord componentuntilId- the value for theuntilIdrecord 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
-