Package com.io7m.idstore.model
Record Class IdPage<T>
java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdPage<T>
- Type Parameters:
T- The type of data- Record Components:
items- The itemspageIndex- The page index (starting at 0)pageCount- The total page countpageFirstOffset- The offset of the first item in the list
public record IdPage<T>(List<T> items, int pageIndex, int pageCount, long pageFirstOffset)
extends Record
A page of items.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.items()Returns the value of theitemsrecord component.intReturns the value of thepageCountrecord component.longReturns the value of thepageFirstOffsetrecord component.intReturns the value of thepageIndexrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IdPage
-
-
Method Details
-
toString
-
hashCode
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
items
-
pageIndex
-
pageCount
-
pageFirstOffset
public long pageFirstOffset()Returns the value of thepageFirstOffsetrecord component.- Returns:
- the value of the
pageFirstOffsetrecord component
-