Class UISelectItem
- java.lang.Object
- 
- jakarta.faces.component.UIComponent
- 
- jakarta.faces.component.UIComponentBase
- 
- jakarta.faces.component.UISelectItem
 
 
 
- 
- All Implemented Interfaces:
- PartialStateHolder,- StateHolder,- TransientStateHolder,- ComponentSystemEventListener,- FacesListener,- SystemEventListenerHolder,- EventListener
 - Direct Known Subclasses:
- UISelectItemGroup
 
 public class UISelectItem extends UIComponentBase UISelectItem is a component that may be nested inside a UISelectManyorUISelectOnecomponent, and causes the addition of aSelectIteminstance to the list of available options for the parent component. The contents of theSelectItemcan be specified in one of the following ways:- The valueattribute's value is an instance ofSelectItem.
- The associated ValueExpressionpoints at a model data item of typeSelectItem.
- A new SelectIteminstance is synthesized from the values of theitemDescription,itemDisabled,itemLabel,itemEscaped, anditemValueattributes.
 
- 
- 
Field SummaryFields Modifier and Type Field Description static StringCOMPONENT_FAMILYThe standard component family for this component.static StringCOMPONENT_TYPEThe standard component type for this component.- 
Fields inherited from class jakarta.faces.component.UIComponentATTRS_WITH_DECLARED_DEFAULT_VALUES, BEANINFO_KEY, bindings, COMPOSITE_COMPONENT_TYPE_KEY, COMPOSITE_FACET_NAME, FACETS_KEY, VIEW_LOCATION_KEY
 
- 
 - 
Constructor SummaryConstructors Constructor Description UISelectItem()Create a newUISelectIteminstance with default property values.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFamily()Return the identifier of the component family to which this component belongs.StringgetItemDescription()Return the description for this selection item.StringgetItemLabel()Return the localized label for this selection item.ObjectgetItemValue()Return the server value for this selection item.ObjectgetValue()Returns thevalueproperty of theUISelectItem.booleanisItemDisabled()Return the disabled setting for this selection item.booleanisItemEscaped()Return the escape setting for the label of this selection item.booleanisNoSelectionOption()Return the value of thenoSelectionOptionproperty.voidsetItemDescription(String itemDescription)Set the description for this selection item.voidsetItemDisabled(boolean itemDisabled)Set the disabled value for this selection item.voidsetItemEscaped(boolean itemEscaped)Set the escape value for the label of this selection item.voidsetItemLabel(String itemLabel)Set the localized label for this selection item.voidsetItemValue(Object itemValue)Set the server value for this selection item.voidsetNoSelectionOption(boolean noSelectionOption)Set the value of thenoSelectionOptionproperty.voidsetValue(Object value)Sets thevalueproperty of theUISelectItem.- 
Methods inherited from class jakarta.faces.component.UIComponentBaseaddClientBehavior, addFacesListener, broadcast, clearInitialState, decode, encodeBegin, encodeChildren, encodeEnd, findComponent, getAttributes, getChildCount, getChildren, getClientBehaviors, getClientId, getDefaultEventName, getEventNames, getFacesContext, getFacesListeners, getFacet, getFacetCount, getFacets, getFacetsAndChildren, getId, getListenersForEventClass, getParent, getPassThroughAttributes, getRenderer, getRendererType, getRendersChildren, invokeOnComponent, isRendered, isTransient, markInitialState, processDecodes, processRestoreState, processSaveState, processUpdates, processValidators, queueEvent, removeFacesListener, restoreAttachedState, restoreState, saveAttachedState, saveState, setId, setParent, setRendered, setRendererType, setTransient, subscribeToEvent, unsubscribeFromEvent
 - 
Methods inherited from class jakarta.faces.component.UIComponentencodeAll, getClientId, getCompositeComponentParent, getContainerClientId, getCurrentComponent, getCurrentCompositeComponent, getNamingContainer, getPassThroughAttributes, getResourceBundleMap, getStateHelper, getStateHelper, getTransientStateHelper, getTransientStateHelper, getValueExpression, initialStateMarked, isCompositeComponent, isInView, isVisitable, popComponentFromEL, processEvent, pushComponentToEL, restoreTransientState, saveTransientState, setInView, setValueExpression, visitTree
 
- 
 
- 
- 
- 
Field Detail- 
COMPONENT_TYPEpublic static final String COMPONENT_TYPE The standard component type for this component. - See Also:
- Constant Field Values
 
 - 
COMPONENT_FAMILYpublic static final String COMPONENT_FAMILY The standard component family for this component. - See Also:
- Constant Field Values
 
 
- 
 - 
Constructor Detail- 
UISelectItempublic UISelectItem() Create a new UISelectIteminstance with default property values.
 
- 
 - 
Method Detail- 
getFamilypublic String getFamily() Description copied from class:UIComponentReturn the identifier of the component family to which this component belongs. This identifier, in conjunction with the value of the rendererTypeproperty, may be used to select the appropriateRendererfor this component instance. Note this method should NOT returnnull- Specified by:
- getFamilyin class- UIComponent
- Returns:
- the component family (not null).
 
 - 
getItemDescriptionpublic String getItemDescription() Return the description for this selection item. - Returns:
- the item description.
 
 - 
setItemDescriptionpublic void setItemDescription(String itemDescription) Set the description for this selection item. - Parameters:
- itemDescription- The new description
 
 - 
isItemDisabledpublic boolean isItemDisabled() Return the disabled setting for this selection item. - Returns:
- trueis the item disabled,- falseotherwise.
 
 - 
setItemDisabledpublic void setItemDisabled(boolean itemDisabled) Set the disabled value for this selection item. - Parameters:
- itemDisabled- The new disabled flag
 
 - 
isItemEscapedpublic boolean isItemEscaped() Return the escape setting for the label of this selection item. - Returns:
- trueif the item is escaped,- falseotherwise.
 
 - 
setItemEscapedpublic void setItemEscaped(boolean itemEscaped) Set the escape value for the label of this selection item. - Parameters:
- itemEscaped- The new disabled flag
 
 - 
getItemLabelpublic String getItemLabel() Return the localized label for this selection item. - Returns:
- the item label.
 
 - 
setItemLabelpublic void setItemLabel(String itemLabel) Set the localized label for this selection item. - Parameters:
- itemLabel- The new localized label
 
 - 
getItemValuepublic Object getItemValue() Return the server value for this selection item. - Returns:
- the item value.
 
 - 
setItemValuepublic void setItemValue(Object itemValue) Set the server value for this selection item. - Parameters:
- itemValue- The new server value
 
 - 
getValuepublic Object getValue() Returns the valueproperty of theUISelectItem.- Returns:
- the value.
 
 - 
setValuepublic void setValue(Object value) Sets the valueproperty of theUISelectItem.- Parameters:
- value- the new value
 
 - 
isNoSelectionOptionpublic boolean isNoSelectionOption() Return the value of the noSelectionOptionproperty. If the value of this property istrue, the system interprets the option represented by thisUISelectIteminstance as representing a "no selection" option. SeeUISelectOne.validateValue(jakarta.faces.context.FacesContext, java.lang.Object)andUISelectMany.validateValue(jakarta.faces.context.FacesContext, java.lang.Object)for usage.- Returns:
- the no selection option.
- Since:
- 2.0
 
 - 
setNoSelectionOptionpublic void setNoSelectionOption(boolean noSelectionOption) Set the value of the noSelectionOptionproperty.- Parameters:
- noSelectionOption- the no selection option.
- Since:
- 2.0
 
 
- 
 
-