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
A page of items.
-
-
Method Details
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
items
Returns the value of theitemsrecord component.- Returns:
- the value of the
itemsrecord component
-
pageIndex
public int pageIndex()Returns the value of thepageIndexrecord component.- Returns:
- the value of the
pageIndexrecord component
-
pageCount
public int pageCount()Returns the value of thepageCountrecord component.- Returns:
- the value of the
pageCountrecord component
-
pageFirstOffset
public long pageFirstOffset()Returns the value of thepageFirstOffsetrecord component.- Returns:
- the value of the
pageFirstOffsetrecord component
-