Interface FormComponent<C extends FormComponent<C>>

    • Method Detail

      • isHidden

        boolean isHidden()
        Whether or not this component is hidden within the form.
        Returns:
        whether or not hidden
      • getHelpText

        ExplanatoryMessage getHelpText()

        Additional information that can be displayed from a clickable popup from a (?) icon displaying next to the component

        This value is translatable and can be a key that maps into a message bundle

        Returns:
        the help text
      • getTooltip

        ExplanatoryMessage getTooltip()

        Displays when hovering over a field that gives additional information on what potential values can be or how the field should be filled out

        This value is translatable and can be a key that maps into a message bundle

        Returns:
        the tooltip
      • getHint

        InternationalizedMessage getHint()

        Displays as text next to the field with information about how a user should fill it out. This is always visible when rendering the field

        This value is translatable and can be a key that maps into a message bundle

        Returns:
        the hint
      • setHidden

        void setHidden​(boolean isHidden)
      • hidden

        default C hidden​(boolean hidden)
      • hidden

        default C hidden()
      • notHidden

        default C notHidden()
      • helpText

        default C helpText​(String helpText)
      • tooltip

        default C tooltip​(String tooltip)
      • hint

        default C hint​(String hint)