Uses of Class
jakarta.faces.model.SelectItem
-
Uses of SelectItem in jakarta.faces.model
Modifier and TypeClassDescriptionclass
SelectItemGroup is a subclass ofSelectItem
that identifies a set of options that will be made available as a subordinate "submenu" or "options list", depending upon the requirements of theUISelectMany
orUISelectOne
renderer that is actually used.Modifier and TypeMethodDescriptionSelectItemGroup.getSelectItems()
Return the set of subordinateSelectItem
s for this group.Modifier and TypeMethodDescriptionvoid
SelectItemGroup.setSelectItems
(SelectItem... selectItems) Set the set of subordinateSelectItem
s for this group as a variable array.Modifier and TypeMethodDescriptionvoid
SelectItemGroup.setSelectItems
(Collection<? extends SelectItem> selectItems) Set the set of subordinateSelectItem
s for this group as a collection.ModifierConstructorDescriptionSelectItemGroup
(String label, String description, boolean disabled, SelectItem... selectItems) Construct aSelectItemGroup
with the specified properties.ModifierConstructorDescriptionSelectItemGroup
(String label, String description, boolean disabled, Collection<? extends SelectItem> selectItems) Construct aSelectItemGroup
with the specified properties.