Interface AuthorFilteredContent

  • All Superinterfaces:
    java.lang.CharSequence

    @API(type=NOT_EXTENDABLE,
         src=PUBLIC)
    public interface AuthorFilteredContent
    extends java.lang.CharSequence
    The char sequence representing the filtered Author content.
    The content represents the entire text content of the Author page + additional markers/sentinels at offsets which are pointed to by the AuthorNodes. Each AuthorNode points to specific start and end character markers in the content. The start and end offsets pointed to by the AuthorNode can be retrieved using the AuthorNode.getStartOffset() and AuthorNode.getEndOffset()

    Since:
    12.1
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getOriginalOffset​(int filteredOffset)
      Get the original offset corresponding to the given filtered offset.
      • Methods inherited from interface java.lang.CharSequence

        charAt, chars, codePoints, length, subSequence, toString
    • Method Detail

      • getOriginalOffset

        int getOriginalOffset​(int filteredOffset)
        Get the original offset corresponding to the given filtered offset.
        Parameters:
        filteredOffset - The filtered offset.
        Returns:
        The original offset corresponding to the filtered offset.