Interface DropdownValuesProvider

All Known Implementing Classes:
BeansDropdownValuesProvider, EnumDropdownValuesProvider

public interface DropdownValuesProvider
Provides data for configurable drop down.
  • Method Summary

    Modifier and Type
    Method
    Description
    getValues(String dropDownValueClassTypes)
    Returns values to be displayed in configurable dropdown.
    getValues(String dropDownValueClassTypes, Map<String,String> options)
    Returns values to be displayed in configurable dropdown.
  • Method Details

    • getValues

      List<Object> getValues(String dropDownValueClassTypes)
      Returns values to be displayed in configurable dropdown.
      Parameters:
      dropDownValueClassTypes - - class type of values.
      Returns:
      List of values.
    • getValues

      List<Object> getValues(String dropDownValueClassTypes, Map<String,String> options)
      Returns values to be displayed in configurable dropdown.
      Parameters:
      dropDownValueClassTypes - - class type of values. * @param options - dropdown options
      options - - dropdown options
      Returns:
      List of values.