Class SelectItem

java.lang.Object
jakarta.faces.model.SelectItem
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
SelectItemGroup

public class SelectItem extends Object implements Serializable

SelectItem represents a single item in the list of supported items associated with a UISelectMany or UISelectOne component.

See Also:
  • Constructor Summary Link icon

    Constructors
    Constructor
    Description
    Construct a SelectItem with no initialized property values.
    Construct a SelectItem with the specified value.
    SelectItem(Object value, String label)
    Construct a SelectItem with the specified value and label.
    SelectItem(Object value, String label, String description)
    Construct a SelectItem instance with the specified value, label and description.
    SelectItem(Object value, String label, String description, boolean disabled)
    Construct a SelectItem instance with the specified property values.
    SelectItem(Object value, String label, String description, boolean disabled, boolean escape)
    Construct a SelectItem instance with the specified property values.
    SelectItem(Object value, String label, String description, boolean disabled, boolean escape, boolean noSelectionOption)
    Construct a SelectItem instance with the specified property values.
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    Return a description of this item, for use in development tools.
    Return the label of this item, to be rendered visibly for the user.
    Return the value of this item, to be delivered to the model if this item is selected by the user.
    boolean
    Return the disabled flag for this item, which should modify the rendered output to make this item unavailable for selection by the user if set to true.
    boolean
    If and only if this returns true, the code that renders this select item must escape the label using escaping syntax appropriate to the content type being rendered.
    boolean
    Return the value of the noSelectionOption property.
    void
    setDescription(String description)
    Set the description of this item, for use in development tools.
    void
    setDisabled(boolean disabled)
    Set the disabled flag for this item, which should modify the rendered output to make this item unavailable for selection by the user if set to true.
    void
    setEscape(boolean escape)
    Set the value of the escape property.
    void
    Set the label of this item, to be rendered visibly for the user.
    void
    setNoSelectionOption(boolean noSelectionOption)
    Set the value of the noSelectionOption property.
    void
    Set the value of this item, to be delivered to the model if this item is selected by this user.

    Methods inherited from class java.lang.Object Link icon

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details Link icon

    • SelectItem Link icon

      public SelectItem()

      Construct a SelectItem with no initialized property values.

    • SelectItem Link icon

      public SelectItem(Object value)

      Construct a SelectItem with the specified value. The label property will be set to the value (converted to a String, if necessary), the description property will be set to null, the disabled property will be set to false, and the escape property will be set to ( true.

      Parameters:
      value - Value to be delivered to the model if this item is selected by the user
    • SelectItem Link icon

      public SelectItem(Object value, String label)

      Construct a SelectItem with the specified value and label. The description property will be set to null, the disabled property will be set to false, and the escape property will be set to true.

      Parameters:
      value - Value to be delivered to the model if this item is selected by the user
      label - Label to be rendered for this item in the response
    • SelectItem Link icon

      public SelectItem(Object value, String label, String description)

      Construct a SelectItem instance with the specified value, label and description. This disabled property will be set to false, and the escape property will be set to true.

      Parameters:
      value - Value to be delivered to the model if this item is selected by the user
      label - Label to be rendered for this item in the response
      description - Description of this item, for use in tools
    • SelectItem Link icon

      public SelectItem(Object value, String label, String description, boolean disabled)

      Construct a SelectItem instance with the specified property values. The escape property will be set to true.

      Parameters:
      value - Value to be delivered to the model if this item is selected by the user
      label - Label to be rendered for this item in the response
      description - Description of this item, for use in tools
      disabled - Flag indicating that this option is disabled
    • SelectItem Link icon

      public SelectItem(Object value, String label, String description, boolean disabled, boolean escape)

      Construct a SelectItem instance with the specified property values.

      Parameters:
      value - Value to be delivered to the model if this item is selected by the user
      label - Label to be rendered for this item in the response
      description - Description of this item, for use in tools
      disabled - Flag indicating that this option is disabled
      escape - Flag indicating that the text of this option should be escaped when rendered.
      Since:
      1.2
    • SelectItem Link icon

      public SelectItem(Object value, String label, String description, boolean disabled, boolean escape, boolean noSelectionOption)

      Construct a SelectItem instance with the specified property values.

      Parameters:
      value - Value to be delivered to the model if this item is selected by the user
      label - Label to be rendered for this item in the response
      description - Description of this item, for use in tools
      disabled - Flag indicating that this option is disabled
      escape - Flag indicating that the text of this option should be escaped when rendered.
      noSelectionOption - Flag indicating that the current option is a "no selection" option
      Since:
      1.2
  • Method Details Link icon

    • getDescription Link icon

      public String getDescription()

      Return a description of this item, for use in development tools.

      Returns:
      a description of this item, for use in development tools
    • setDescription Link icon

      public void setDescription(String description)

      Set the description of this item, for use in development tools.

      Parameters:
      description - The new description
    • isDisabled Link icon

      public boolean isDisabled()

      Return the disabled flag for this item, which should modify the rendered output to make this item unavailable for selection by the user if set to true.

      Returns:
      the disabled flag for this item
    • setDisabled Link icon

      public void setDisabled(boolean disabled)

      Set the disabled flag for this item, which should modify the rendered output to make this item unavailable for selection by the user if set to true.

      Parameters:
      disabled - The new disabled flag
    • getLabel Link icon

      public String getLabel()

      Return the label of this item, to be rendered visibly for the user.

      Returns:
      the label of this item
    • setLabel Link icon

      public void setLabel(String label)

      Set the label of this item, to be rendered visibly for the user.

      Parameters:
      label - The new label
    • getValue Link icon

      public Object getValue()

      Return the value of this item, to be delivered to the model if this item is selected by the user.

      Returns:
      the value of this item
    • setValue Link icon

      public void setValue(Object value)

      Set the value of this item, to be delivered to the model if this item is selected by this user.

      Parameters:
      value - The new value
    • isEscape Link icon

      public boolean isEscape()

      If and only if this returns true, the code that renders this select item must escape the label using escaping syntax appropriate to the content type being rendered.

      Returns:
      the escape value.
      Since:
      2.0
    • setEscape Link icon

      public void setEscape(boolean escape)

      Set the value of the escape property. See isEscape().

      Parameters:
      escape - the new value of the escape property
      Since:
      2.0
    • isNoSelectionOption Link icon

      public boolean isNoSelectionOption()

      Return the value of the noSelectionOption property. If the value of this property is true, the system interprets the option represented by this SelectItem instance as representing a "no selection" option. See UISelectOne.validateValue(jakarta.faces.context.FacesContext, java.lang.Object) and UISelectMany.validateValue(jakarta.faces.context.FacesContext, java.lang.Object) for usage.

      Returns:
      the value of the noSelectionOption property
      Since:
      2.0
    • setNoSelectionOption Link icon

      public void setNoSelectionOption(boolean noSelectionOption)

      Set the value of the noSelectionOption property.

      Parameters:
      noSelectionOption - the new value of the noSelectionOption property
      Since:
      2.0