Record Class PaginationQueryParameters
java.lang.Object
java.lang.Record
io.github.stefanbratanov.jvm.openai.PaginationQueryParameters
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionafter()Returns the value of theafterrecord component.before()Returns the value of thebeforerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.limit()Returns the value of thelimitrecord component.static PaginationQueryParametersnone()order()Returns the value of theorderrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
PaginationQueryParameters
public PaginationQueryParameters(Optional<Integer> limit, Optional<String> order, Optional<String> before, Optional<String> after) Creates an instance of aPaginationQueryParametersrecord class.- Parameters:
limit- the value for thelimitrecord componentorder- the value for theorderrecord componentbefore- the value for thebeforerecord componentafter- the value for theafterrecord component
-
-
Method Details
-
none
-
newBuilder
-
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). -
limit
Returns the value of thelimitrecord component.- Returns:
- the value of the
limitrecord component
-
order
Returns the value of theorderrecord component.- Returns:
- the value of the
orderrecord component
-
before
Returns the value of thebeforerecord component.- Returns:
- the value of the
beforerecord component
-
after
Returns the value of theafterrecord component.- Returns:
- the value of the
afterrecord component
-