Class SelectFieldDescriptor

    • Field Detail

      • SELECT_ONE

        public static final AbstractSelectionFieldDescriptor.OptionValue SELECT_ONE
        Add this OptionValue as the first in the OptionValue list if you want the select box to contain a '-- Select One --' option with an empty value.
      • DEFAULT

        public static final AbstractSelectionFieldDescriptor.OptionValue DEFAULT
        Add this OptionValue in the OptionValue list if you want the select box to contain a 'Default' option with 'Default' value. This OptionValue should be used when the value to be used is determined at runtime where default configuration is applicable.
    • Constructor Detail

      • SelectFieldDescriptor

        public SelectFieldDescriptor​(String name,
                                     String description,
                                     String[] optionValues)
        Create a new SelectFieldDescriptor with the specified option values.
        Parameters:
        name - the field name (must be unique per AdapterConfigurationGuiDescriptor or TableDescriptor).
        description - a helpful description of the field.
        optionValues - a String array to build the OptionValue list from. One OptionValue will be created for each value in the array and the name and value fields will be the same.
      • SelectFieldDescriptor

        public SelectFieldDescriptor​(String name,
                                     String description,
                                     List<AbstractSelectionFieldDescriptor.OptionValue> optionValues)
        Create a new SelectFieldDescriptor with the specified option values.
        Parameters:
        name - The field name (must be unique per AdapterConfigurationGuiDescriptor or TableDescriptor). This name will also be used as the label for the field in the administrative console. To ensure configuration can be read in future releases of a plugin, it is recommended to not change a field's name - instead use a label to rename it in the administrative console.
        description - a helpful description of the field.
        optionValues - a List of OptionValues that will make up the available options the user can choose from.