PdfDocument.PdfPageLinks


public final class PdfDocument.PdfPageLinks


Represents the links within a single page of a PDF document.

Summary

Public constructors

Public methods

final @NonNull List<@NonNull PdfPageLinkContent>

A list of external links (links to web pages or other resources) represented as PdfPageLinkContent objects.

final @NonNull List<@NonNull PdfPageGotoLinkContent>

A list of internal links (links to other pages within the same document) represented as PdfPageGotoLinkContent objects.

Public constructors

PdfPageLinks

Added in 1.0.0-alpha10
public PdfPageLinks(
    @NonNull List<@NonNull PdfPageGotoLinkContent> gotoLinks,
    @NonNull List<@NonNull PdfPageLinkContent> externalLinks
)

Public methods

getExternalLinks

Added in 1.0.0-alpha10
public final @NonNull List<@NonNull PdfPageLinkContentgetExternalLinks()

A list of external links (links to web pages or other resources) represented as PdfPageLinkContent objects.

getGotoLinks

Added in 1.0.0-alpha10
public final @NonNull List<@NonNull PdfPageGotoLinkContentgetGotoLinks()

A list of internal links (links to other pages within the same document) represented as PdfPageGotoLinkContent objects.