Interface LOVCollection
- 
 public interface LOVCollectionA list of values for a field.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description String[]getGridTitles(SchedulerSession session)Get the grid titles for displaying the list of values.String[]getRow(int n)Get the values for the nth row.intgetSize()Get the number of elements in the collection.ObjectgetValue(int n)Get the value for the field for the nth row.
 
- 
- 
- 
Method Detail- 
getSizeint getSize() Get the number of elements in the collection.- Returns:
- the number of elements in the collection
 
 - 
getGridTitlesString[] getGridTitles(SchedulerSession session) Get the grid titles for displaying the list of values.- Parameters:
- session- to be used to translate the titles
- Returns:
- array with the column headers
 
 - 
getRowString[] getRow(int n) Get the values for the nth row. NOTE: Various pieces of code, most notably the autosuggest, but also some veto-handlers, expect exact matches to be first in the list. A returned string can be a translation key.- Parameters:
- n- is the index of the requested element
- Returns:
- array with column values for the n-th element
 
 - 
getValueObject getValue(int n) Get the value for the field for the nth row. NOTE: Various pieces of code, most notably the autosuggest, but also some veto-handlers, expect exact matches to be first in the list.- Parameters:
- n- is the index of the requested element
- Returns:
- internal value for the n-th element
 
 
- 
 
-