Uses of Class
com.broadleafcommerce.metadata.dsl.core.extension.fields.SelectOption
-
-
Uses of SelectOption in com.broadleafcommerce.metadata.dsl.core.extension.actions
Methods in com.broadleafcommerce.metadata.dsl.core.extension.actions that return types with arguments of type SelectOption Modifier and Type Method Description static List<SelectOption>
GenerateTemplateAction.GenerationType. toOptions()
Factory method to generate a set ofSelectOption
from this enumeration.Method parameters in com.broadleafcommerce.metadata.dsl.core.extension.actions with type arguments of type SelectOption Modifier and Type Method Description default A
ExportGridAction. fileTypeField(List<SelectOption> optionsToAdd)
Adds the field to select the file type that the export should ultimately produce for download by the user. -
Uses of SelectOption in com.broadleafcommerce.metadata.dsl.core.extension.columns
Methods in com.broadleafcommerce.metadata.dsl.core.extension.columns with parameters of type SelectOption Modifier and Type Method Description default C
EnumColumn. option(SelectOption... options)
Provides options which can be shown in the column.Method parameters in com.broadleafcommerce.metadata.dsl.core.extension.columns with type arguments of type SelectOption Modifier and Type Method Description default C
EnumColumn. options(Collection<SelectOption> optionsToAdd)
Provides options which can be shown in the column using a collection ofSelectOptions
. -
Uses of SelectOption in com.broadleafcommerce.metadata.dsl.core.extension.fields
Methods in com.broadleafcommerce.metadata.dsl.core.extension.fields that return SelectOption Modifier and Type Method Description SelectOption
SelectOption. attribute(String key, Object value)
SelectOption
SelectOption. color(String color)
SelectOption
SelectOption. copy()
SelectOption
SelectOption. label(InternationalizedMessage label)
SelectOption
SelectOption. label(String labelKey)
SelectOption
SelectOption. value(String value)
Methods in com.broadleafcommerce.metadata.dsl.core.extension.fields that return types with arguments of type SelectOption Modifier and Type Method Description static List<SelectOption>
SelectOption. fromAllLocales()
Returns the list of all installed locales converted toSelectOption
.static List<SelectOption>
SelectOption. fromEnums(SelectOption.SelectOptionEnum[] optionEnums)
Factory method to generate a set ofSelectOption
from the passed enumeration.static List<SelectOption>
SelectOption. fromLocales(List<Locale> locales)
Returns the list of the specified locales converted toSelectOption
.static List<SelectOption>
SelectOption. fromTimeZones()
Returns the list of allZoneId.getAvailableZoneIds()
converted toSelectOption
.static List<SelectOption>
SelectOption. fromTimeZones(Set<String> zoneIds)
Returns the list of the specified time-zones converted toSelectOption
.default List<SelectOption>
SelectField. getOptions()
Methods in com.broadleafcommerce.metadata.dsl.core.extension.fields with parameters of type SelectOption Modifier and Type Method Description default F
SelectField. option(SelectOption... options)
Provides options which can be selected by a select field.Method parameters in com.broadleafcommerce.metadata.dsl.core.extension.fields with type arguments of type SelectOption Modifier and Type Method Description default F
SelectField. options(Collection<SelectOption> optionsToAdd)
Provides options which can be selected by a select field using a collection ofSelectOptions
.Constructors in com.broadleafcommerce.metadata.dsl.core.extension.fields with parameters of type SelectOption Constructor Description SelectOption(SelectOption option)
Constructor parameters in com.broadleafcommerce.metadata.dsl.core.extension.fields with type arguments of type SelectOption Constructor Description SelectOptionList(Collection<? extends SelectOption> c)
-