Interface ListNode<L extends ListNode<L>>

    • Method Detail

      • li

        default L li​(String content)
        A convenience method for content(listItem(content))
        Parameters:
        content - the content to add as a single list item within the list
        Returns:
        this
      • li

        default L li​(String... content)
        A convenience method for content(listItem(content))
        Parameters:
        content - the content to add as a single list item within the list
        Returns:
        this
      • li

        default L li​(ListItemContent content)
        A convenience method for content(listItem(content))
        Parameters:
        content - the content to add as a single list item within the list
        Returns:
        this
      • li

        default L li​(ListItemContent... content)
        A convenience method for content(listItem(content))
        Parameters:
        content - the content to add as a single list item within the list
        Returns:
        this
      • li

        default L li​(Iterable<? extends ListItemContent> content)
        A convenience method for content(listItem(content))
        Parameters:
        content - the content to add as a single list item within the list
        Returns:
        this
      • li

        default L li​(Stream<? extends ListItemContent> content)
        A convenience method for content(listItem(content))
        Parameters:
        content - the content to add as a single list item within the list
        Returns:
        this