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 TypeFieldDescriptionint
int
-
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.int
Gets the start index of the records.int
Gets the total number of records.void
setItems
(ArrayList<JellyfinCadGenresItem> items) Sets the list of JellyfinCadGenresItem objects.void
setStartIndex
(int startIndex) Sets the start index of the records.void
setTotalRecordCount
(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.
-