Interface DropdownValuesProvider
-
- All Known Implementing Classes:
BeansDropdownValuesProvider,EnumDropdownValuesProvider
public interface DropdownValuesProviderProvides data for configurable drop down.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.Object>getValues(java.lang.String dropDownValueClassTypes)Returns values to be displayed in configurable dropdown.java.util.List<java.lang.Object>getValues(java.lang.String dropDownValueClassTypes, java.util.Map<java.lang.String,java.lang.String> options)Returns values to be displayed in configurable dropdown.
-
-
-
Method Detail
-
getValues
java.util.List<java.lang.Object> getValues(java.lang.String dropDownValueClassTypes)
Returns values to be displayed in configurable dropdown.- Parameters:
dropDownValueClassTypes- - class type of values.- Returns:
- List of values.
-
getValues
java.util.List<java.lang.Object> getValues(java.lang.String dropDownValueClassTypes, java.util.Map<java.lang.String,java.lang.String> options)Returns values to be displayed in configurable dropdown.- Parameters:
dropDownValueClassTypes- - class type of values. * @param options - dropdown optionsoptions- - dropdown options- Returns:
- List of values.
-
-