Package com.lariflix.jemm.dtos
Class JellyfinCadGenresItems
java.lang.Object
com.lariflix.jemm.dtos.JellyfinCadGenresItems
Represents a collection of JellyfinCadGenresItem objects.
- Since:
- 1.0.0
- Version:
- 1.0.0
- Author:
- Cesar Bianchi
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionintint -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new empty JellyfinCadGenresItems object.JellyfinCadGenresItems(ArrayList<JellyfinCadGenresItem> items, int totalRecordCount, int startIndex) Constructs a new JellyfinCadGenresItems object with the specified items, total record count, and start index. -
Method Summary
Modifier and TypeMethodDescriptiongetItems()Gets the list of JellyfinCadGenresItem objects.intGets the start index of the records.intGets the total number of records.voidsetItems(ArrayList<JellyfinCadGenresItem> items) Sets the list of JellyfinCadGenresItem objects.voidsetStartIndex(int startIndex) Sets the start index of the records.voidsetTotalRecordCount(int totalRecordCount) Sets the total number of records.
-
Field Details
-
items
-
totalRecordCount
public int totalRecordCount -
startIndex
public int startIndex
-
-
Constructor Details
-
JellyfinCadGenresItems
public JellyfinCadGenresItems(ArrayList<JellyfinCadGenresItem> items, int totalRecordCount, int startIndex) Constructs a new JellyfinCadGenresItems object with the specified items, total record count, and start index.- Parameters:
items- The list of JellyfinCadGenresItem objects.totalRecordCount- The total number of records.startIndex- The start index of the records.
-
JellyfinCadGenresItems
public JellyfinCadGenresItems()Constructs a new empty JellyfinCadGenresItems object.
-
-
Method Details
-
getItems
Gets the list of JellyfinCadGenresItem objects.- Returns:
- The list of JellyfinCadGenresItem objects.
-
setItems
Sets the list of JellyfinCadGenresItem objects.- Parameters:
items- The list of JellyfinCadGenresItem objects.
-
getTotalRecordCount
public int getTotalRecordCount()Gets the total number of records.- Returns:
- The total number of records.
-
setTotalRecordCount
public void setTotalRecordCount(int totalRecordCount) Sets the total number of records.- Parameters:
totalRecordCount- The total number of records.
-
getStartIndex
public int getStartIndex()Gets the start index of the records.- Returns:
- The start index of the records.
-
setStartIndex
public void setStartIndex(int startIndex) Sets the start index of the records.- Parameters:
startIndex- The start index of the records.
-