Class CheckBoxDescription.Init<T extends CheckBoxDescription.Init<T>>

Direct Known Subclasses:
CheckBoxDescription.Builder
Enclosing class:
CheckBoxDescription

protected abstract static class CheckBoxDescription.Init<T extends CheckBoxDescription.Init<T>> extends UiObjectDescriptionBase.Init<T>
  • Constructor Details

    • Init

      protected Init()
  • Method Details

    • build

      public CheckBoxDescription build()
      Description copied from class: DescriptionBase.Init
      Returns the built description instance (builder pattern).
      Overrides:
      build in class DescriptionBase.Init<T extends CheckBoxDescription.Init<T>>
      Returns:
      The built description instance (builder pattern).
    • state

      public T state(CheckedState state)
      Initializes the CheckBox state.
      Parameters:
      state - the CheckBox state
      Returns:
      the description instance with the update state (builder pattern).
    • checked

      public T checked(Boolean isChecked)
      Initializes whether the check box is checked.
      Parameters:
      isChecked - whether the check box is checked
      Returns:
      the description instance with the update state (builder pattern).
    • threeState

      public T threeState(Boolean isThreeState)
      Initializes whether the CheckBox is able to display three check states.
      Parameters:
      isThreeState - whether the CheckBox is able to display three check states
      Returns:
      the description instance with the update state (builder pattern).