Class EditFieldDescription.Init<T extends EditFieldDescription.Init<T>>

Direct Known Subclasses:
EditFieldDescription.Builder
Enclosing class:
EditFieldDescription

protected abstract static class EditFieldDescription.Init<T extends EditFieldDescription.Init<T>> extends ElementDescription.Init<T>
Helper class for EditFieldDescription.Builder.
  • Constructor Details

    • Init

      protected Init()
  • Method Details

    • build

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

      public T attachedText(StringProperty attachedText)
      Initializes static text that is attached to the edit field.
      Parameters:
      attachedText - a StringProperty or RegExpProperty.
      Returns:
      the description instance with the update state (builder pattern).
    • attachedText

      public T attachedText(String attachedText)
      Initializes static text that is attached to the edit field.
      Parameters:
      attachedText - the static text.
      Returns:
      the description instance with the update state (builder pattern).
    • enabled

      public T enabled(Boolean enabled)
      Initializes whether the object can accept user input.
      Parameters:
      enabled - true to set as enabled.
      Returns:
      the description instance with the update state (builder pattern).
    • highlighted

      public T highlighted(Boolean highlighted)
      Initializes whether the edit box is highlighted.
      Parameters:
      highlighted - true to set as highlighted.
      Returns:
      the description instance with the update state (builder pattern).
    • iconName

      public T iconName(StringProperty iconName)
      Initializes the name of the icon used in the edit box.
      Parameters:
      iconName - a StringProperty or RegExpProperty.
      Returns:
      the description instance with the update state (builder pattern).
    • iconName

      public T iconName(String iconName)
      Initializes the name of the icon used in the edit box.
      Parameters:
      iconName - the name of the icon.
      Returns:
      the description instance with the update state (builder pattern).
    • maxLength

      public T maxLength(Integer maxLength)
      Initializes the maximum number of characters that can be entered in the edit box.
      Parameters:
      maxLength - the maximum number of characters.
      Returns:
      the description instance with the update state (builder pattern).
    • numerical

      public T numerical(Boolean numerical)
      Initializes whether the edit box is a numerical field
      Parameters:
      numerical - true to set as numerical field.
      Returns:
      the description instance with the update state (builder pattern).
    • required

      public T required(Boolean required)
      Initializes whether the edit box is required.
      Parameters:
      required - true to set as required.
      Returns:
      the description instance with the update state (builder pattern).
    • text

      public T text(StringProperty text)
      Initializes text string value of the object.
      Parameters:
      text - a StringProperty or RegExpProperty.
      Returns:
      the description instance with the update state (builder pattern).
    • text

      public T text(String text)
      Initializes text string value of the object.
      Parameters:
      text - the text.
      Returns:
      the description instance with the update state (builder pattern).