public interface DisplayOptions
| Modifier and Type | Method and Description |
|---|---|
int |
getBatchSize()
Retrieve the batch size of the query.
|
java.util.Date |
getEndDate()
Return the end date criteria
|
int |
getFirstResult()
Return the first index criteria
|
int |
getHeaderIndex()
Retrieve the header index.
|
int |
getMaxResults()
Return the max results criteria
|
boolean |
getPageForward()
Retrieve the flag that indicates if it is for next page.
|
java.util.Date |
getStartDate()
Return the start date criteria
|
int |
getTailIndex()
Retrieve the tail index.
|
boolean |
isAscending()
Return whether results are in ascending order
|
void |
setAscending(boolean ascending)
Set whether results are in ascending order
|
void |
setBatchSize(int size)
Set the batch size of the query.
|
void |
setEndDate(java.util.Date endDate)
Set the end date criteria
|
void |
setFirstResult(int startPosition)
Set the first index criteria
|
void |
setHeaderIndex(int headerIndex)
Set the header index criteria.
|
void |
setMaxResults(int maxResults)
Set the max results criteria
|
void |
setPageForward(boolean pageForward)
Set the flag that indicates if it is for next page.
|
void |
setStartDate(java.util.Date startDate)
Set the start date criteria
|
void |
setTailIndex(int tailIndex)
Set the tail index.
|
void setStartDate(java.util.Date startDate)
startDate - the start date to be setjava.util.Date getStartDate()
void setEndDate(java.util.Date endDate)
endDate - java.util.Date getEndDate()
void setFirstResult(int startPosition)
startPosition - int getFirstResult()
void setMaxResults(int maxResults)
maxResults - int getMaxResults()
void setAscending(boolean ascending)
ascending - boolean isAscending()
void setHeaderIndex(int headerIndex)
headerIndex - The header indexint getHeaderIndex()
setHeaderIndex(int)void setTailIndex(int tailIndex)
tailIndex - The tail index.setHeaderIndex(int)int getTailIndex()
setHeaderIndex(int)void setPageForward(boolean pageForward)
pageForward - boolean getPageForward()
void setBatchSize(int size)
size - The batch size of the query.int getBatchSize()