Module MaterialFX

Class ComboBoxSelectionModel<T>

All Implemented Interfaces:
ISingleSelectionModel<T>

public class ComboBoxSelectionModel<T> extends SingleSelectionModel<T>
Extension of SingleSelectionModel to implement a few more methods for comboboxes.
  • Constructor Details

  • Method Details

    • selectFirst

      public void selectFirst()
      Selects the first item of the combobox if the items list is not empty.
    • selectNext

      public void selectNext()
      Selects the next item of the combobox if exists.
    • selectPrevious

      public void selectPrevious()
      Selects the previous item of the combobox if exists.
    • selectLast

      public void selectLast()
      Selects the last item of the combobox if the items list is not empty.