Uses of Class
jakarta.faces.model.SelectItem
-
Packages that use SelectItem Package Description jakarta.faces.model -
-
Uses of SelectItem in jakarta.faces.model
Subclasses of SelectItem in jakarta.faces.model Modifier and Type Class Description class
SelectItemGroup
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.Methods in jakarta.faces.model that return SelectItem Modifier and Type Method Description SelectItem[]
SelectItemGroup. getSelectItems()
Return the set of subordinateSelectItem
s for this group.Methods in jakarta.faces.model with parameters of type SelectItem Modifier and Type Method Description void
SelectItemGroup. setSelectItems(SelectItem... selectItems)
Set the set of subordinateSelectItem
s for this group as a variable array.Method parameters in jakarta.faces.model with type arguments of type SelectItem Modifier and Type Method Description void
SelectItemGroup. setSelectItems(Collection<? extends SelectItem> selectItems)
Set the set of subordinateSelectItem
s for this group as a collection.Constructors in jakarta.faces.model with parameters of type SelectItem Constructor Description SelectItemGroup(String label, String description, boolean disabled, SelectItem... selectItems)
Construct aSelectItemGroup
with the specified properties.Constructor parameters in jakarta.faces.model with type arguments of type SelectItem Constructor Description SelectItemGroup(String label, String description, boolean disabled, Collection<? extends SelectItem> selectItems)
Construct aSelectItemGroup
with the specified properties.
-