Interface IFooterElement<I extends IFooterElement>

    • Method Detail

      • getSpan

        default int getSpan()
        Returns number of columns to span this footer. Default: 1.
      • withSpan

        I withSpan​(int span)
        Returns a copy of this immutable component with the specified span.

        Sets number of columns to span this footer.

        Parameters:
        span - Number of columns to span this footer.

        Default: 1.

        Returns:
        A modified copy of the this object
      • getAlign

        @Nullable
        java.lang.String getAlign()
        Returns the horizontal alignment of this footer.

        Default: null (system default: "left" unless CSS specified).

      • withAlign

        I withAlign​(@Nullable
                    java.lang.String align)
        Returns a copy of this immutable component with the specified align.

        Sets the horizontal alignment of this footer.

        Parameters:
        align - The horizontal alignment of this footer.

        Default: null.

        Returns:
        A modified copy of the this object
      • getValign

        @Nullable
        java.lang.String getValign()
        Returns the vertical alignment of this footer.

        Default: null (system default: "top").

      • withValign

        I withValign​(@Nullable
                     java.lang.String valign)
        Returns a copy of this immutable component with the specified valign.

        Sets the vertical alignment of this footer.

        Parameters:
        valign - The vertical alignment of this footer.

        Default: null.

        Returns:
        A modified copy of the this object