Class LabelTypePager

java.lang.Object
org.codelibs.fess.app.pager.LabelTypePager
All Implemented Interfaces:
Serializable

public class LabelTypePager extends Object implements Serializable
Pager for label types.
See Also:
  • Field Details

    • DEFAULT_PAGE_SIZE

      public static final int DEFAULT_PAGE_SIZE
      The default page size.
      See Also:
    • DEFAULT_CURRENT_PAGE_NUMBER

      public static final int DEFAULT_CURRENT_PAGE_NUMBER
      The default current page number.
      See Also:
    • id

      public String id
      The ID of the label type.
    • name

      public String name
      The name of the label type.
    • value

      public String value
      The value of the label type.
    • sortOrder

      public String sortOrder
      The sort order of the label type.
    • createdBy

      public String createdBy
      The creator of the label type.
    • createdTime

      public String createdTime
      The created time of the label type.
    • versionNo

      public String versionNo
      The version number of the label type.
  • Constructor Details

    • LabelTypePager

      public LabelTypePager()
      Default constructor.
  • Method Details

    • clear

      public void clear()
      Clears the pager fields.
    • getDefaultCurrentPageNumber

      protected int getDefaultCurrentPageNumber()
      Returns the default current page number.
      Returns:
      The default current page number.
    • getAllRecordCount

      public int getAllRecordCount()
      Returns the total number of records.
      Returns:
      The total number of records.
    • setAllRecordCount

      public void setAllRecordCount(int allRecordCount)
      Sets the total number of records.
      Parameters:
      allRecordCount - The total number of records.
    • getAllPageCount

      public int getAllPageCount()
      Returns the total number of pages.
      Returns:
      The total number of pages.
    • setAllPageCount

      public void setAllPageCount(int allPageCount)
      Sets the total number of pages.
      Parameters:
      allPageCount - The total number of pages.
    • isExistPrePage

      public boolean isExistPrePage()
      Returns true if a previous page exists.
      Returns:
      True if a previous page exists.
    • setExistPrePage

      public void setExistPrePage(boolean existPrePage)
      Sets whether a previous page exists.
      Parameters:
      existPrePage - True if a previous page exists.
    • isExistNextPage

      public boolean isExistNextPage()
      Returns true if a next page exists.
      Returns:
      True if a next page exists.
    • setExistNextPage

      public void setExistNextPage(boolean existNextPage)
      Sets whether a next page exists.
      Parameters:
      existNextPage - True if a next page exists.
    • getPageSize

      public int getPageSize()
      Returns the page size.
      Returns:
      The page size.
    • setPageSize

      public void setPageSize(int pageSize)
      Sets the page size.
      Parameters:
      pageSize - The page size.
    • getCurrentPageNumber

      public int getCurrentPageNumber()
      Returns the current page number.
      Returns:
      The current page number.
    • setCurrentPageNumber

      public void setCurrentPageNumber(int currentPageNumber)
      Sets the current page number.
      Parameters:
      currentPageNumber - The current page number.
    • getPageNumberList

      public List<Integer> getPageNumberList()
      Returns the list of page numbers.
      Returns:
      The list of page numbers.
    • setPageNumberList

      public void setPageNumberList(List<Integer> pageNumberList)
      Sets the list of page numbers.
      Parameters:
      pageNumberList - The list of page numbers.
    • getDefaultPageSize

      protected int getDefaultPageSize()
      Returns the default page size.
      Returns:
      The default page size.